Method: Rpdoc::PostmanResponse#initialize
- Defined in:
- lib/rpdoc/postman_response.rb
#initialize(rspec_example, rspec_request, rspec_response) ⇒ PostmanResponse
Returns a new instance of PostmanResponse.
7 8 9 10 11 12 13 14 |
# File 'lib/rpdoc/postman_response.rb', line 7 def initialize(rspec_example, rspec_request, rspec_response) @rspec_example = rspec_example @rspec_request = rspec_request @rspec_response = rspec_response @configuration = Rpdoc.configuration @data = response_data end |