class WebMock::RackResponse

def evaluate(request)

def evaluate(request)
  env = build_rack_env(request)
  status, headers, response = @app.call(env)
  Response.new(
    body: body_from_rack_response(response),
    headers: headers,
    status: [status, Rack::Utils::HTTP_STATUS_CODES[status]]
  )
end