Sha256: 4186334e142b801c32a2503739fb8e18c820ac0d7ba57b35ac3ccf043074a5fe
Contents?: true
Size: 628 Bytes
Versions: 90
Compression:
Stored size: 628 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class ClusterPutSettingsTest < ::Test::Unit::TestCase context "Cluster: Put settings" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'PUT', method assert_equal '_cluster/settings', url assert_equal Hash.new, params assert_equal Hash.new, body true end.returns(FakeResponse.new) subject.cluster.put_settings end end end end end
Version data entries
90 entries across 90 versions & 6 rubygems