1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# frozen_string_literal: true
begin
require "rspec/core/rake_task"
desc "Run all specs"
RSpec::Core::RakeTask.new(:spec) do |task|
task.pattern = "spec/{unit,integration}{,/*/**}/*_spec.rb"
end
namespace :spec do
desc "Run unit specs"
RSpec::Core::RakeTask.new(:unit) do |task|
task.pattern = "spec/unit{,/*/**}/*_spec.rb"
end
desc "Run integration specs"
RSpec::Core::RakeTask.new(:integration) do |task|
task.pattern = "spec/integration{,/*/**}/*_spec.rb"
end
end
rescue LoadError
%w[spec spec:unit spec:integration].each do |name|
task name do
$stderr.puts "In order to run #{name}, do `gem install rspec`"
end
end
end
|