Sha256: bdd987d38fae3ab1d0933359ffa1502ada84cc8a31a36fb70b0f28bc9517ab3d
Contents?: true
Size: 1.28 KB
Versions: 77
Compression:
Stored size: 1.28 KB
Contents
require 'test_helper' module Elasticsearch module Test class ClusterStateTest < ::Test::Unit::TestCase context "Cluster: State" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal '_cluster/state', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.cluster.state end should "build the correct path" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal '_cluster/state/foo,bar', url assert_equal({}, params) true end.returns(FakeResponse.new) subject.cluster.state :metric => ['foo', 'bar'] end should "send the API parameters" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal '_cluster/state', url assert_equal({:index_templates => 'foo,bar'}, params) true end.returns(FakeResponse.new) subject.cluster.state :index_templates => ['foo', 'bar'] end end end end end
Version data entries
77 entries across 77 versions & 6 rubygems