Methods
T
Instance Public methods
test_bottom_first()
# File actionpack/test/controller/rescue_test.rb, line 191
def test_bottom_first
  get :raise_grandchild_exception
  assert_response :no_content
end
test_inheritance_works()
# File actionpack/test/controller/rescue_test.rb, line 196
def test_inheritance_works
  get :raise_child_exception
  assert_response :created
end