Methods
T
Instance Public methods
test_exception_in_parent_controller()
# File actionpack/test/controller/rescue_test.rb, line 231
def test_exception_in_parent_controller
  get :raise_parent_exception
  assert_response :created
end
test_first_exception_in_child_controller()
# File actionpack/test/controller/rescue_test.rb, line 221
def test_first_exception_in_child_controller
  get :raise_first_exception_in_child_controller
  assert_response :gone
end
test_second_exception_in_child_controller()
# File actionpack/test/controller/rescue_test.rb, line 226
def test_second_exception_in_child_controller
  get :raise_second_exception_in_child_controller
  assert_response :gone
end