aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-04-30 23:36:47 -0500
committerJoshua Peek <josh@joshpeek.com>2009-04-30 23:46:35 -0500
commit05bd863c022601bb0bbd17c51adbcb420f349323 (patch)
tree423b819e2dd55740501f2fb1d56d83ecdd3e0be1 /actionpack/test
parent1fcc7dbcc8dcf7f1d42ca8486ad313f0c805033a (diff)
downloadrails-05bd863c022601bb0bbd17c51adbcb420f349323.tar.gz
rails-05bd863c022601bb0bbd17c51adbcb420f349323.tar.bz2
rails-05bd863c022601bb0bbd17c51adbcb420f349323.zip
alias method chain process with test
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/filters_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/filters_test.rb b/actionpack/test/controller/filters_test.rb
index aca7a821c8..bdec5d2d4c 100644
--- a/actionpack/test/controller/filters_test.rb
+++ b/actionpack/test/controller/filters_test.rb
@@ -674,7 +674,7 @@ class FilterTest < Test::Unit::TestCase
request.action = action
controller = controller.new if controller.is_a?(Class)
@controller = controller
- @controller.process_with_test(request, ActionController::TestResponse.new)
+ @controller.process(request, ActionController::TestResponse.new)
end
end
@@ -917,6 +917,6 @@ class YieldingAroundFiltersTest < Test::Unit::TestCase
request.action = action
controller = controller.new if controller.is_a?(Class)
@controller = controller
- @controller.process_with_test(request, ActionController::TestResponse.new)
+ @controller.process(request, ActionController::TestResponse.new)
end
end