Minitest picks up tests in provider modules

This commit is contained in:
Paul Thornthwaite 2014-03-12 15:32:15 +00:00
parent 235c812fba
commit f38e4417e8
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ task :default => :test
task :travis => ['test', 'test:travis', 'coveralls_push_workaround']
Rake::TestTask.new do |t|
t.pattern = "test/**/*_test.rb"
t.pattern = File.join("**", "test", "**", "*_test.rb")
end
namespace :test do