Sha256: 88ab29208366049b731600b5f4f26af7661d6c53dcb1004d2b1a6964f15b2680
Contents?: true
Size: 507 Bytes
Versions: 6
Compression:
Stored size: 507 Bytes
Contents
require "rspec/core/rake_task" desc "Run unit tests" RSpec::Core::RakeTask.new(:"test:unit") do |t| t.ruby_opts = ["-I spec/unit"] t.rspec_opts = ["--color", "--backtrace"] t.pattern = "spec/unit/**/test_*.rb" end desc "Run integration tests" RSpec::Core::RakeTask.new(:"test:integration") do |t| t.ruby_opts = ["-Ilib", "-I spec/integration"] t.rspec_opts = ["--color", "--backtrace"] t.pattern = "spec/integration/**/test_*.rb" end task :test => [:"test:unit", :"test:integration"]
Version data entries
6 entries across 6 versions & 1 rubygems