aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-22 15:16:28 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-22 15:25:13 -0700
commit72a574b5073b1debd58c954b34c54d3bdee7749f (patch)
tree994345ceb428e29ba7588ee5abc5cf2fa73de448 /actionpack/Rakefile
parent01129534cde293e3561dd7cc3cb5ae9ac3de9e8c (diff)
downloadrails-72a574b5073b1debd58c954b34c54d3bdee7749f.tar.gz
rails-72a574b5073b1debd58c954b34c54d3bdee7749f.tar.bz2
rails-72a574b5073b1debd58c954b34c54d3bdee7749f.zip
Get controller/layout_test.rb running on new base except for ActionController::Base.exempt_from_layout which is going to be deprecated.
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r--actionpack/Rakefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 0ce6f7823b..6c820636d5 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -61,12 +61,13 @@ Rake::TestTask.new(:test_new_base_on_old_tests) do |t|
# layout
# Dir.glob( "test/{dispatch,template}/**/*_test.rb" ).sort +
t.test_files = %w(
- addresses_render base benchmark caching capture content_type dispatcher
- flash mime_responds record_identifier redirect
- render render_json render_xml
- send_file request_forgery_protection rescue url_rewriter verification webservice
- http_basic_authentication http_digest_authentication
- action_pack_assertions assert_select filter_params helper
+ action_pack_assertions addresses_render assert_select
+ base benchmark caching capture content_type dispatcher
+ filter_params flash helper http_basic_authentication
+ http_digest_authentication layout mime_responds
+ record_identifier redirect render render_json render_xml
+ send_file request_forgery_protection rescue url_rewriter
+ verification webservice
).map { |name| "test/controller/#{name}_test.rb" }
end