Sha256: 84a02bda16963fc2b4e1249482ae5b72f4fa2884a7bc421dabb8065a84e24d29
Contents?: true
Size: 596 Bytes
Versions: 70
Compression:
Stored size: 596 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class IndicesUpgradeTest < ::Test::Unit::TestCase context "Indices: Upgrade" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'POST', method assert_equal '_upgrade', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.upgrade end end end end end
Version data entries
70 entries across 70 versions & 6 rubygems