aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/testing
diff options
context:
space:
mode:
authorYehuda Katz and Carl Lerche <wycats@gmail.com>2009-04-08 17:33:06 -0700
committerYehuda Katz and Carl Lerche <wycats@gmail.com>2009-04-08 17:33:41 -0700
commit6c05b5e938ac48b69aec17c598fec447e38dde31 (patch)
tree2d1144857677293454ad29f10317674dd9f7e2c3 /actionpack/lib/action_controller/testing
parent91402bdd31dbda4906d19e08d63112c749cc92f4 (diff)
downloadrails-6c05b5e938ac48b69aec17c598fec447e38dde31.tar.gz
rails-6c05b5e938ac48b69aec17c598fec447e38dde31.tar.bz2
rails-6c05b5e938ac48b69aec17c598fec447e38dde31.zip
Temporarily modifies setup to call super directly. This can support more T::U runners.
Diffstat (limited to 'actionpack/lib/action_controller/testing')
-rw-r--r--actionpack/lib/action_controller/testing/test_case.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/testing/test_case.rb b/actionpack/lib/action_controller/testing/test_case.rb
index c14785ba83..4f38f75f41 100644
--- a/actionpack/lib/action_controller/testing/test_case.rb
+++ b/actionpack/lib/action_controller/testing/test_case.rb
@@ -141,7 +141,9 @@ module ActionController
end
end
- setup :setup_controller_request_and_response
+ def setup
+ setup_controller_request_and_response
+ end
@@controller_class = nil