class ExceptionInheritanceRescueControllerTest

Public Instance Methods

test_bottom_first() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 192
def test_bottom_first
  get :raise_grandchild_exception
  assert_response :no_content
end
test_inheritance_works() click to toggle source
# File actionpack/test/controller/rescue_test.rb, line 197
def test_inheritance_works
  get :raise_child_exception
  assert_response :created
end