rake配置多个minitest的方法

namespace :test do
  Rake::TestTask.new(:all) do |t|
    t.libs << "app"
    t.libs << "test"
    t.pattern = 'test/**/*_test.rb'
    t.options = '--pride'
  end
  Rake::TestTask.new(name=:wind) do |t|
    t.libs << "app"
    t.libs << "test"
    t.pattern = 'test/**/wind_*_test.rb'
    t.options = '--pride'
  end
end

你可能感兴趣的:(rake配置多个minitest的方法)