Methods
S
T
Instance Public methods
simple_app(resp)
# File actionpack/test/dispatch/routing_test.rb, line 2551
def simple_app(resp)
  lambda { |e| [ 200, { 'Content-Type' => 'text/plain' }, [resp] ] }
end
test_goodbye_should_be_available()
# File actionpack/test/dispatch/routing_test.rb, line 2568
def test_goodbye_should_be_available
  get '/goodbye'
  assert_equal 'goodbye', @response.body
end
test_hello_should_not_be_overwritten()
# File actionpack/test/dispatch/routing_test.rb, line 2573
def test_hello_should_not_be_overwritten
  get '/hello'
  assert_equal 'hello', @response.body
end
test_missing_routes_are_still_missing()
# File actionpack/test/dispatch/routing_test.rb, line 2578
def test_missing_routes_are_still_missing
  get '/random'
  assert_equal 404, @response.status
end