Sha256: d28a8f515ed16e3cc67d914c592c28c67213a6f0048c5c7ec2d002e3b7bda57e

Contents?: true

Size: 457 Bytes

Versions: 2

Compression:

Stored size: 457 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#field_stats' do

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

  it 'performs the request' do
    expect(client_double.field_stats).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/field_stats_spec.rb
elasticsearch-api-6.8.2 spec/elasticsearch/api/actions/field_stats_spec.rb