From 903dcefbaff8cf3a0e9db61048aebd9e753835ea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 10 Jan 2005 22:58:06 +0000 Subject: [PATCH] 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 --- actionpack/Rakefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/actionpack/Rakefile b/actionpack/Rakefile index c885221f10..b2d3f8c986 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -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 \ No newline at end of file +end