Methods
A
T
Constants
Routes = ActionDispatch::Routing::RouteSet.new
 
APP = build_app Routes
 
Instance Public methods
app()
# File actionpack/test/dispatch/routing_test.rb, line 4703
def app
  APP
end
test_legit_name_errors_are_not_caught()
# File actionpack/test/dispatch/routing_test.rb, line 4712
def test_legit_name_errors_are_not_caught
  get '/posts/bar'
  assert_equal 500, response.status
end
test_legit_no_method_errors_are_not_caught()
# File actionpack/test/dispatch/routing_test.rb, line 4707
def test_legit_no_method_errors_are_not_caught
  get '/posts/foo'
  assert_equal 500, response.status
end
test_legit_routing_not_found_responses()
# File actionpack/test/dispatch/routing_test.rb, line 4717
def test_legit_routing_not_found_responses
  get '/posts/baz'
  assert_equal 404, response.status

  get '/i_do_not_exist'
  assert_equal 404, response.status
end