class Rack::ClientSpec::GotRequest

Attributes

env[R]
response[R]

Public Class Methods

new(env, response) click to toggle source
# File lib/rack/client_spec/got_request.rb, line 27
def initialize(env, response)
  @env = env
  @response = Response.new(response)
end