class RSpecAPITest::HTTPHelpers::JSONArrayResponse

Attributes

code[R]
headers[R]

Public Class Methods

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