mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Fixed random ordering of test cases that would cause errors on some systems #446 [Josh]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@373 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -20,7 +20,10 @@ task :default => [ :test ]
|
||||
|
||||
Rake::TestTask.new { |t|
|
||||
t.libs << "test"
|
||||
t.pattern = 'test/*/*_test.rb'
|
||||
# make sure we include the controller tests (c*) first as on some systems
|
||||
# this will not happen automatically and the tests (as a whole) will error
|
||||
t.test_files=Dir.glob( "test/c*/*_test.rb" ) + Dir.glob( "test/[ft]*/*_test.rb" )
|
||||
# t.pattern = 'test/*/*_test.rb'
|
||||
t.verbose = true
|
||||
}
|
||||
|
||||
@@ -104,4 +107,4 @@ task :lines do
|
||||
end
|
||||
}
|
||||
puts "Lines #{lines}, LOC #{codelines}"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user