class ControllerInheritanceRescueControllerTest

Public Instance Methods

test_exception_in_parent_controller() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 232
def test_exception_in_parent_controller
  get :raise_parent_exception
  assert_response :created
end
test_first_exception_in_child_controller() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 222
def test_first_exception_in_child_controller
  get :raise_first_exception_in_child_controller
  assert_response :gone
end
test_second_exception_in_child_controller() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 227
def test_second_exception_in_child_controller
  get :raise_second_exception_in_child_controller
  assert_response :gone
end