class VCR::Configuration

def preserve_exact_body_bytes_for?(http_message)

Other tags:
    See: #preserve_exact_body_bytes -

Parameters:
  • http_message (#body, #headers) -- the `VCR::Request` or `VCR::Response` object being serialized

Returns:
  • (Boolean) - whether or not the body of the given HTTP message should
def preserve_exact_body_bytes_for?(http_message)
  invoke_hook(:preserve_exact_body_bytes, http_message, VCR.current_cassette).any?
end