Sha256: bdbcb49c013eee0f72c1b160590d6049777e851badad8d2e940dbadf8d9d3471
Contents?: true
Size: 953 Bytes
Versions: 1
Compression:
Stored size: 953 Bytes
Contents
# SPDX-License-Identifier: Apache-2.0 # # The OpenSearch Contributors require contributions made to # this file be licensed under the Apache-2.0 license or a # compatible open source license. # # Modifications Copyright OpenSearch Contributors. See # GitHub history for details. require 'spec_helper' describe 'client#delete_pit' do let(:expected_args) do [ 'DELETE', '_search/point_in_time', {}, { pit_id: ['abc'] } ] end let(:client) do Class.new { include OpenSearch::API }.new end it 'requires the :body argument' do expect { client.delete_pit }.to raise_exception(ArgumentError) end it 'does not accept unregistered params' do expect { client.delete_pit(body: {}, something: :else) }.to raise_exception(ArgumentError) end it 'performs the request with all optional params' do expect(client_double.delete_pit(body: { pit_id: ['abc'] })).to eq({}) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opensearch-api-2.2.0 | spec/opensearch/api/actions/delete_pit_spec.rb |