Class: Fitting::Records::Tested::Request
- Inherits:
-
Object
- Object
- Fitting::Records::Tested::Request
- Defined in:
- lib/fitting/records/tested/request.rb
Instance Method Summary collapse
- #body ⇒ Object
- #fitting_response ⇒ Object
-
#initialize(response, example) ⇒ Request
constructor
A new instance of Request.
- #method ⇒ Object
- #path ⇒ Object
- #test_file_path ⇒ Object
- #test_path ⇒ Object
- #to_spherical ⇒ Object
Constructor Details
#initialize(response, example) ⇒ Request
Returns a new instance of Request.
9 10 11 12 |
# File 'lib/fitting/records/tested/request.rb', line 9 def initialize(response, example) @example = example @response = response end |
Instance Method Details
#body ⇒ Object
22 23 24 |
# File 'lib/fitting/records/tested/request.rb', line 22 def body @body ||= @response.request.request_parameters end |
#fitting_response ⇒ Object
26 27 28 |
# File 'lib/fitting/records/tested/request.rb', line 26 def fitting_response @fitting_response ||= Fitting::Records::Tested::Response.new(@response) end |
#method ⇒ Object
14 15 16 |
# File 'lib/fitting/records/tested/request.rb', line 14 def method @method ||= @response.request.request_method end |
#path ⇒ Object
18 19 20 |
# File 'lib/fitting/records/tested/request.rb', line 18 def path @path ||= Tomograph::Path.new(@response.request.fullpath) end |
#test_file_path ⇒ Object
34 35 36 |
# File 'lib/fitting/records/tested/request.rb', line 34 def test_file_path @test_file_path ||= @example.file_path end |
#test_path ⇒ Object
30 31 32 |
# File 'lib/fitting/records/tested/request.rb', line 30 def test_path @test_path ||= @example.location end |