class RSpecAPITest::HTTPHelpers::JSONHashResponse

Attributes

code[R]
headers[R]

Public Class Methods

new(hash, code, headers) click to toggle source
Calls superclass method
# File lib/rspec_api_test/http_helpers.rb, line 16
def initialize(hash, code, headers)
  @code = code
  @headers = headers
  super(hash.with_indifferent_access)
end