spec/elastic/transport/http/faraday_spec.rb [21:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  let(:client) do
    Elastic::Transport::Client.new(transport_class: described_class)
  end

  describe '#perform_request' do
    subject(:perform_request) { client.perform_request(*args) }
    let(:args) do
      ['POST', '/', {}, body, headers]
    end
    let(:body) { '{"foo":"bar"}' }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/elastic/transport/http/manticore_spec.rb [22:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    let(:client) do
      Elastic::Transport::Client.new(transport_class: described_class)
    end

    describe '#perform_request' do
      subject(:perform_request) { client.perform_request(*args) }
      let(:args) do
        ['POST', '/', {}, body, headers]
      end
      let(:body) { '{"foo":"bar"}' }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



