Methods
C
N
Class Public methods
new(response)
# File actionpack/test/dispatch/routing/route_set_test.rb, line 7
def initialize(response)
  @response = response
end
Instance Public methods
call(env)
# File actionpack/test/dispatch/routing/route_set_test.rb, line 11
def call(env)
  [ 200, { 'Content-Type' => 'text/plain' }, [response] ]
end