diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-01-28 22:50:46 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-01-28 22:50:46 -0600 |
commit | 85750f22c90c914a429116fb908990c5a2c68379 (patch) | |
tree | 4a7653cd1463d1bcc053dca17c98096d4718b653 /actionpack/Rakefile | |
parent | 319ae4628f4e0058de3e40e4ca7791b17e45e70c (diff) | |
download | rails-85750f22c90c914a429116fb908990c5a2c68379.tar.gz rails-85750f22c90c914a429116fb908990c5a2c68379.tar.bz2 rails-85750f22c90c914a429116fb908990c5a2c68379.zip |
Move dispatch related tests into test/dispatch
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r-- | actionpack/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile index c389e5a8d6..230a78c069 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -30,7 +30,7 @@ Rake::TestTask.new(:test_action_pack) do |t| # make sure we include the tests in alphabetical order as on some systems # this will not happen automatically and the tests (as a whole) will error - t.test_files = Dir.glob( "test/[cft]*/**/*_test.rb" ).sort + t.test_files = Dir.glob( "test/[cdft]*/**/*_test.rb" ).sort t.verbose = true #t.warning = true |