aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2014-08-07 09:10:30 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2014-08-07 09:10:30 -0300
commitf0fdba8b1d9f100d67494746acbb84e5a20f5729 (patch)
treeff3c66c124e873556a9d7d423a1f4e3bf731bad0 /actionpack
parente6e81f856e969efda49166af82c27594f30ea592 (diff)
parent14508aec701a366713572908de76fec134f6a2c3 (diff)
downloadrails-f0fdba8b1d9f100d67494746acbb84e5a20f5729.tar.gz
rails-f0fdba8b1d9f100d67494746acbb84e5a20f5729.tar.bz2
rails-f0fdba8b1d9f100d67494746acbb84e5a20f5729.zip
Merge pull request #16419 from tgxworld/remove_legacy_code
Remove ActionController::RaiseActionExceptions.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/test_case.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb
index 9d0ec6f4de..eb5d824cbc 100644
--- a/actionpack/lib/action_controller/test_case.rb
+++ b/actionpack/lib/action_controller/test_case.rb
@@ -456,7 +456,6 @@ module ActionController
end
def controller_class=(new_class)
- prepare_controller_class(new_class) if new_class
self._controller_class = new_class
end
@@ -473,11 +472,6 @@ module ActionController
Class === constant && constant < ActionController::Metal
end
end
-
- def prepare_controller_class(new_class)
- new_class.send :include, ActionController::TestCase::RaiseActionExceptions
- end
-
end
# Simulate a GET request with the given parameters.
@@ -713,34 +707,6 @@ module ActionController
end
end
- # When the request.remote_addr remains the default for testing, which is 0.0.0.0, the exception is simply raised inline
- # (skipping the regular exception handling from rescue_action). If the request.remote_addr is anything else, the regular
- # rescue_action process takes place. This means you can test your rescue_action code by setting remote_addr to something else
- # than 0.0.0.0.
- #
- # The exception is stored in the exception accessor for further inspection.
- module RaiseActionExceptions
- def self.included(base) #:nodoc:
- unless base.method_defined?(:exception) && base.method_defined?(:exception=)
- base.class_eval do
- attr_accessor :exception
- protected :exception, :exception=
- end
- end
- end
-
- protected
- def rescue_action_without_handler(e)
- self.exception = e
-
- if request.remote_addr == "0.0.0.0"
- raise(e)
- else
- super(e)
- end
- end
- end
-
include Behavior
end
end