Sha256: 53a985e071a42067688e7781acb36e54425daa3790bdd347565edfe9402f4760
Contents?: true
Size: 1.62 KB
Versions: 88
Compression:
Stored size: 1.62 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndicesDeleteMappingTest < ::Test::Unit::TestCase context "Indices: Delete mapping" do subject { FakeClient.new } should "require the :index argument" do assert_raise ArgumentError do subject.indices.delete_mapping :type => 'bar' end end should "require the :type argument" do assert_raise ArgumentError do subject.indices.delete_mapping :index => 'foo' end end should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'DELETE', method assert_equal 'foo/bar', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.delete_mapping :index => 'foo', :type => 'bar' end should "perform request against multiple indices" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo,bar/baz', url true end.returns(FakeResponse.new) subject.indices.delete_mapping :index => ['foo','bar'], :type => 'baz' end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar/bar%2Fbam', url true end.returns(FakeResponse.new) subject.indices.delete_mapping :index => 'foo^bar', :type => 'bar/bam' end end end end end
Version data entries
88 entries across 88 versions & 6 rubygems