1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

don't expand test path

This commit is contained in:
Joshua Peek 2010-02-28 18:26:00 -06:00
parent cbefcc88b3
commit 1a2fba1b6b

View file

@ -13,7 +13,7 @@ require 'rake/testtask'
task :default => :test task :default => :test
Rake::TestTask.new do |t| Rake::TestTask.new do |t|
t.libs << "#{dir}/test" t.libs << "test"
t.test_files = Dir.glob("#{dir}/test/cases/**/*_test.rb").sort t.test_files = Dir.glob("#{dir}/test/cases/**/*_test.rb").sort
t.warning = true t.warning = true
end end