Sha256: 4559e6d6799272a38647690e050767c13b4e9075f210ad143a2188a29173bc12

Contents?: true

Size: 459 Bytes

Versions: 2

Compression:

Stored size: 459 Bytes

Contents

# Licensed to Elasticsearch B.V under one or more agreements.
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
# See the LICENSE file in the project root for more information

require 'spec_helper'

describe 'client#list_benchmarks' do

  let(:expected_args) do
    [
        'GET',
        '_bench',
        { },
        nil
    ]
  end

  it 'performs the request' do
    expect(client_double.list_benchmarks).to eq({})
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
elasticsearch-api-6.8.3 spec/elasticsearch/api/actions/list_benchmarks_spec.rb
elasticsearch-api-6.8.2 spec/elasticsearch/api/actions/list_benchmarks_spec.rb