aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-05-26 15:03:09 -0700
committerCarl Lerche <carllerche@mac.com>2009-05-26 15:03:09 -0700
commita1f280e83d2b134e23897d4de457d76fb0095768 (patch)
treefd51ff61395ba4ef39996684dd5b53d2957369fb /actionpack/Rakefile
parent1358f77745c7a4afab0dab7796aa63072c9d323a (diff)
downloadrails-a1f280e83d2b134e23897d4de457d76fb0095768.tar.gz
rails-a1f280e83d2b134e23897d4de457d76fb0095768.tar.bz2
rails-a1f280e83d2b134e23897d4de457d76fb0095768.zip
Got all the dispatch tests running on new base
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r--actionpack/Rakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index a70d4834c0..c44c88f638 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -59,12 +59,13 @@ end
desc 'Old Controller Tests on New Base'
Rake::TestTask.new(:test_new_base_on_old_tests) do |t|
t.libs << "test/new_base" << "test/lib"
- # layout
- # Dir.glob( "test/{dispatch,template}/**/*_test.rb" ).sort +
+ t.verbose = true
# ==== Not ported
# * filters
- t.test_files = %w(
+
+ # Dir.glob( "test/{dispatch,template}/**/*_test.rb" ).sort +
+ t.test_files = Dir.glob( "test/{dispatch}/**/*_test.rb" ).sort + %w(
action_pack_assertions addresses_render assert_select
base benchmark caching capture content_type cookie dispatcher
filter_params flash helper http_basic_authentication
@@ -74,7 +75,6 @@ Rake::TestTask.new(:test_new_base_on_old_tests) do |t|
resources routing selector send_file test url_rewriter
verification view_paths webservice
).map { |name| "test/controller/#{name}_test.rb" }
- t.verbose = true
end
# Genereate the RDoc documentation