Class: Fitting::Records::Tested::Response
- Inherits:
-
Object
- Object
- Fitting::Records::Tested::Response
- Defined in:
- lib/fitting/records/tested/response.rb
Instance Method Summary collapse
- #body ⇒ Object
-
#initialize(env_response) ⇒ Response
constructor
A new instance of Response.
- #status ⇒ Object
- #to_spherical ⇒ Object
Constructor Details
#initialize(env_response) ⇒ Response
Returns a new instance of Response.
7 8 9 |
# File 'lib/fitting/records/tested/response.rb', line 7 def initialize(env_response) @env_response = env_response end |
Instance Method Details
#body ⇒ Object
15 16 17 |
# File 'lib/fitting/records/tested/response.rb', line 15 def body @body ||= @env_response.body end |
#status ⇒ Object
11 12 13 |
# File 'lib/fitting/records/tested/response.rb', line 11 def status @status ||= @env_response.status end |