Sha256: 7ffdb29b154607df0b9be5df5c3152d9c16617f4af00e760d6797176107e915c
Contents?: true
Size: 800 Bytes
Versions: 8
Compression:
Stored size: 800 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#mtermvectors' do let(:expected_args) do [ 'GET', 'my-index/my-type/_mtermvectors', { }, body ] end let(:body) do { ids: [1, 2, 3] } end it 'performs the request' do expect(client_double.mtermvectors(index: 'my-index', type: 'my-type', body: { ids: [1, 2, 3] })).to eq({}) end context 'when a list of ids is passed instead of a body' do it 'performs the request' do expect(client_double.mtermvectors(index: 'my-index', type: 'my-type', ids: [1, 2, 3])).to eq({}) end end end
Version data entries
8 entries across 8 versions & 1 rubygems