Type:
Module

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.

rescue_action_without_handler
  • References/Ruby on Rails/Rails/Classes/ActionController/ActionController::TestCase/ActionController::TestCase::RaiseActionExceptions

rescue_action_without_handler(e) Instance Protected methods

2025-01-10 15:47:30