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
Constructor Details
#initialize(env_response) ⇒ Response
Returns a new instance of Response.
5 6 7 |
# File 'lib/fitting/records/tested/response.rb', line 5 def initialize(env_response) @env_response = env_response end |
Instance Method Details
#body ⇒ Object
13 14 15 |
# File 'lib/fitting/records/tested/response.rb', line 13 def body @body ||= @env_response.body end |
#status ⇒ Object
9 10 11 |
# File 'lib/fitting/records/tested/response.rb', line 9 def status @status ||= @env_response.status end |