Class: Response
- Inherits:
-
Object
- Object
- Response
- Includes:
- Net::HTTPHeader
- Defined in:
- lib/mechanize/test_case.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#code ⇒ Object
(also: #status)
Returns the value of attribute code.
-
#cookies ⇒ Object
Returns the value of attribute cookies.
-
#header ⇒ Object
Returns the value of attribute header.
-
#http_version ⇒ Object
Returns the value of attribute http_version.
-
#query ⇒ Object
Returns the value of attribute query.
-
#query_params ⇒ Object
Returns the value of attribute query_params.
Instance Method Summary collapse
-
#initialize ⇒ Response
constructor
A new instance of Response.
- #message ⇒ Object
- #read_body {|body| ... } ⇒ Object
Constructor Details
#initialize ⇒ Response
Returns a new instance of Response.
308 309 310 311 312 313 314 315 |
# File 'lib/mechanize/test_case.rb', line 308 def initialize @header = {} @body = '' @code = nil @query = nil @cookies = [] @http_version = '1.1' end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
297 298 299 |
# File 'lib/mechanize/test_case.rb', line 297 def body @body end |
#code ⇒ Object Also known as: status
Returns the value of attribute code.
296 297 298 |
# File 'lib/mechanize/test_case.rb', line 296 def code @code end |
#cookies ⇒ Object
Returns the value of attribute cookies.
297 298 299 |
# File 'lib/mechanize/test_case.rb', line 297 def @cookies end |
#header ⇒ Object
Returns the value of attribute header.
299 300 301 |
# File 'lib/mechanize/test_case.rb', line 299 def header @header end |
#http_version ⇒ Object
Returns the value of attribute http_version.
298 299 300 |
# File 'lib/mechanize/test_case.rb', line 298 def http_version @http_version end |
#query ⇒ Object
Returns the value of attribute query.
297 298 299 |
# File 'lib/mechanize/test_case.rb', line 297 def query @query end |
#query_params ⇒ Object
Returns the value of attribute query_params.
298 299 300 |
# File 'lib/mechanize/test_case.rb', line 298 def query_params @query_params end |
Instance Method Details
#message ⇒ Object
321 322 323 |
# File 'lib/mechanize/test_case.rb', line 321 def '' end |
#read_body {|body| ... } ⇒ Object
317 318 319 |
# File 'lib/mechanize/test_case.rb', line 317 def read_body yield body end |