Class: Jets::SpecHelpers::Controllers::Response
- Inherits:
-
Object
- Object
- Jets::SpecHelpers::Controllers::Response
- Defined in:
- lib/jets/spec_helpers/controllers/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(response) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(response) ⇒ Response
Returns a new instance of Response.
4 5 6 7 8 |
# File 'lib/jets/spec_helpers/controllers/response.rb', line 4 def initialize(response) @status = response['statusCode'].to_i @headers = response['headers'] @body = response['body'] end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
3 4 5 |
# File 'lib/jets/spec_helpers/controllers/response.rb', line 3 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
3 4 5 |
# File 'lib/jets/spec_helpers/controllers/response.rb', line 3 def headers @headers end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
3 4 5 |
# File 'lib/jets/spec_helpers/controllers/response.rb', line 3 def status @status end |