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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
require 'rspec/core/rake_task'
if default = Rake.application.instance_variable_get('@tasks')['default']
default.prerequisites.delete('test')
end
task default: :spec
if ::Rails::VERSION::STRING < "8.0.0"
task stats: "spec:statsetup"
end
desc "Run all specs in spec directory (excluding plugin specs)"
RSpec::Core::RakeTask.new(spec: "spec:prepare")
namespace :spec do
types = begin
dirs = Dir['./spec/**/*_spec.rb']
.map { |f| f.sub(/^\.\/(spec\/\w+)\/.*/, '\\1') }
.uniq
.select { |f| File.directory?(f) }
Hash[dirs.map { |d| [d.split('/').last, d] }]
end
task :prepare do
ENV['RACK_ENV'] = ENV['RAILS_ENV'] = 'test'
if Rails.configuration.generators.options[:rails][:orm] == :active_record
if Rake::Task.task_defined?("test:prepare")
Rake::Task["test:prepare"].invoke
end
end
end
types.each do |type, dir|
desc "Run the code examples in #{dir}"
RSpec::Core::RakeTask.new(type => "spec:prepare") do |t|
t.pattern = "./#{dir}/**/*_spec.rb"
end
end
task :statsetup do
require 'rails/code_statistics'
types.each do |type, dir|
name = type.singularize.capitalize
::STATS_DIRECTORIES << ["#{name} specs", dir]
::CodeStatistics::TEST_TYPES << "#{name} specs"
end
end
end
|