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:
David Heinemeier Hansson 2005-01-10 22:58:06 +00:00
parent b9f28eb587
commit 903dcefbaf
1 changed files with 5 additions and 2 deletions

View File

@ -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