aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-22 15:50:31 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-22 16:55:27 -0700
commit63ed43cb9901cc7adc352a51fa256c3ba7b6637f (patch)
tree6a4d413ba69a0bda6fb764670280fa48018e5f2d /actionpack/Rakefile
parentb77602824afe07dfd8fd8e48407a6086802ec7ef (diff)
downloadrails-63ed43cb9901cc7adc352a51fa256c3ba7b6637f.tar.gz
rails-63ed43cb9901cc7adc352a51fa256c3ba7b6637f.tar.bz2
rails-63ed43cb9901cc7adc352a51fa256c3ba7b6637f.zip
Added render_other_test.rb to the new base test runner
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r--actionpack/Rakefile18
1 files changed, 14 insertions, 4 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 448acf20cb..99ef542f3e 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -61,14 +61,24 @@ 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 +
+
+ # ==== Not ported
+ # * cookie
+ # * filters
+ # * integration
+ # * render_js
+ # * selector
+ # * test
+ # * translation
+ # * view_paths
t.test_files = %w(
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 logging resources routing
+ http_digest_authentication layout logging mime_responds
+ record_identifier redirect render render_json render_other render_xml
+ request_forgery_protection rescue resources routing send_file
+ url_rewriter verification webservice
).map { |name| "test/controller/#{name}_test.rb" }
t.verbose = true
end