Sha256: ed1cc9979ebe7b3dce5d009e4e6a3dfb9617ffa17ad1a00b380237574f55c129

Contents?: true

Size: 339 Bytes

Versions: 49

Compression:

Stored size: 339 Bytes

Contents

# frozen_string_literal: true

require 'rails_helper'

describe LHC::Response do
  context 'body' do
    let(:body) { 'this is a body' }

    let(:raw_response) { OpenStruct.new(body: body) }

    it 'provides response body' do
      response = LHC::Response.new(raw_response, nil)
      expect(response.body).to eq body
    end
  end
end

Version data entries

49 entries across 49 versions & 1 rubygems

Version Path
lhc-15.2.1 spec/response/body_spec.rb
lhc-15.2.0 spec/response/body_spec.rb
lhc-15.1.3 spec/response/body_spec.rb
lhc-15.1.2 spec/response/body_spec.rb
lhc-15.1.1 spec/response/body_spec.rb
lhc-15.1.0 spec/response/body_spec.rb
lhc-16.0.0.pre.pro2162.2 spec/response/body_spec.rb
lhc-16.0.0.pre.pro2162 spec/response/body_spec.rb
lhc-15.0.1 spec/response/body_spec.rb
lhc-15.0.0 spec/response/body_spec.rb
lhc-14.0.0 spec/response/body_spec.rb
lhc-13.4.0.pre.pro1766.1 spec/response/body_spec.rb
lhc-13.2.0 spec/response/body_spec.rb
lhc-13.1.0 spec/response/body_spec.rb
lhc-13.0.0 spec/response/body_spec.rb
lhc-12.3.0 spec/response/body_spec.rb
lhc-12.2.1 spec/response/body_spec.rb
lhc-12.2.0 spec/response/body_spec.rb
lhc-12.1.3 spec/response/body_spec.rb
lhc-12.1.2 spec/response/body_spec.rb