aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-04-12 12:40:51 +1200
committerMichael Koziarski <michael@koziarski.com>2008-04-12 12:40:51 +1200
commit60be4b09f51d2560802ebd744893bb6f737ef57c (patch)
tree391bca0d96a5fb4071467350fd7fdac4e3cfd6f4 /actionpack
parent063c393bf0a2eb762770c97f925b7c2867361ad4 (diff)
parent35904e207940386192cade3d0d871fae10da0510 (diff)
downloadrails-60be4b09f51d2560802ebd744893bb6f737ef57c.tar.gz
rails-60be4b09f51d2560802ebd744893bb6f737ef57c.tar.bz2
rails-60be4b09f51d2560802ebd744893bb6f737ef57c.zip
Merge branch 'master' into custom_paths_for_resource_names
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/components.rb13
-rw-r--r--actionpack/test/controller/dispatcher_test.rb2
2 files changed, 8 insertions, 7 deletions
diff --git a/actionpack/lib/action_controller/components.rb b/actionpack/lib/action_controller/components.rb
index 7f7ecfff78..8275bd380a 100644
--- a/actionpack/lib/action_controller/components.rb
+++ b/actionpack/lib/action_controller/components.rb
@@ -39,12 +39,7 @@ module ActionController #:nodoc:
base.class_eval do
include InstanceMethods
extend ClassMethods
-
- helper do
- def render_component(options)
- @controller.send!(:render_component_as_string, options)
- end
- end
+ helper HelperMethods
# If this controller was instantiated to process a component request,
# +parent_controller+ points to the instantiator of this controller.
@@ -67,6 +62,12 @@ module ActionController #:nodoc:
end
end
+ module HelperMethods
+ def render_component(options)
+ @controller.send!(:render_component_as_string, options)
+ end
+ end
+
module InstanceMethods
# Extracts the action_name from the request parameters and performs that action.
def process_with_components(request, response, method = :perform_action, *arguments) #:nodoc:
diff --git a/actionpack/test/controller/dispatcher_test.rb b/actionpack/test/controller/dispatcher_test.rb
index 84a1c9aab9..9f90872734 100644
--- a/actionpack/test/controller/dispatcher_test.rb
+++ b/actionpack/test/controller/dispatcher_test.rb
@@ -41,7 +41,7 @@ class DispatcherTest < Test::Unit::TestCase
CGI.expects(:new).raises('some multipart parsing failure')
ActionController::Routing::Routes.stubs(:reload)
- Dispatcher.stubs(:log_failsafe_exception)
+ Dispatcher.any_instance.stubs(:log_failsafe_exception)
assert_nothing_raised { dispatch }