Class: Fitting::Records::Tested::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/fitting/records/tested/response.rb

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Response

Returns a new instance of Response.



7
8
9
# File 'lib/fitting/records/tested/response.rb', line 7

def initialize(response)
  @response = response
end

Instance Method Details

#bodyObject



15
16
17
# File 'lib/fitting/records/tested/response.rb', line 15

def body
  @body ||= @response.body
end

#content_typeObject



19
20
21
# File 'lib/fitting/records/tested/response.rb', line 19

def content_type
  @content_type ||= @response.content_type
end

#statusObject



11
12
13
# File 'lib/fitting/records/tested/response.rb', line 11

def status
  @status ||= @response.status
end

#to_sphericalObject



23
24
25
26
27
28
29
# File 'lib/fitting/records/tested/response.rb', line 23

def to_spherical
  Fitting::Records::Spherical::Response.new(
    status: status,
    body: body,
    content_type: content_type
  )
end