Sha256: 51b69eccf6da8d1dda7f580edcb0c1353f2e3c4b6f7f464a6ad0f22fdf9b4616

Contents?: true

Size: 329 Bytes

Versions: 4

Compression:

Stored size: 329 Bytes

Contents

module Fitting
  class Records
    class Tested
      class Response
        def initialize(env_response)
          @env_response = env_response
        end

        def status
          @status ||= @env_response.status
        end

        def body
          @body ||= @env_response.body
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fitting-2.5.0 lib/fitting/records/tested/response.rb
fitting-2.4.1 lib/fitting/records/tested/response.rb
fitting-2.4.0 lib/fitting/records/tested/response.rb
fitting-2.3.0 lib/fitting/records/tested/response.rb