Sha256: c354a7712de781ff5d743ecc1ee5f9c62a29aaa7c9f9e15af3b12a2b833b69fc

Contents?: true

Size: 558 Bytes

Versions: 2

Compression:

Stored size: 558 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.cat#cluster_manager' do
  let(:expected_args) do
    [
      'GET',
      '_cat/cluster_manager',
      {},
      nil,
      {}
    ]
  end

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
opensearch-api-2.2.0 spec/opensearch/api/actions/cat/cluster_manager_spec.rb
opensearch-api-2.1.0 spec/opensearch/api/actions/cat/cluster_manager_spec.rb