Sha256: 7ccf5cb5b07e440e3a130e3e5ff277f7b6200768a28212598440dffcc50a5213
Contents?: true
Size: 421 Bytes
Versions: 42
Compression:
Stored size: 421 Bytes
Contents
module Pact module Hal class NonJsonEntity def initialize(href, body, http_client, response = nil) @href = href @body = body @client = http_client @response = response end def success? true end def response @response end def body @body end def assert_success! self end end end end
Version data entries
42 entries across 42 versions & 1 rubygems