Methods
- S
- T
Instance Public methods
setup()
Link
# File actionpack/test/dispatch/routing_test.rb, line 3774 def setup super s = self routes = ActionDispatch::Routing::RouteSet.new routes.append do get '/hello' => s.simple_app('fail') get '/goodbye' => s.simple_app('goodbye') end routes.draw do get '/hello' => s.simple_app('hello') end @app = self.class.build_app routes end
simple_app(resp)
Link
test_goodbye_should_be_available()
Link
test_hello_should_not_be_overwritten()
Link