Sha256: 63a4232e79888636610bdacc6778719602638850362076d93e79c4a181c64f36
Contents?: true
Size: 1.28 KB
Versions: 57
Compression:
Stored size: 1.28 KB
Contents
require 'test_helper' module Elasticsearch module Test class Cluster_Test < ::Test::Unit::TestCase context "Health" 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/health', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.cluster.health end should "encode URL parameters" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal '_cluster/health', url assert_equal({:level => 'indices'}, params) assert_nil body true end.returns(FakeResponse.new) subject.cluster.health :level => 'indices' end should "return health for a specific index" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal '_cluster/health/foo', url true end.returns(FakeResponse.new) subject.cluster.health :index => 'foo' end end end end end
Version data entries
57 entries across 57 versions & 6 rubygems