Sha256: 21f5ae6d07d5d9c43a0624fc3077d81ba7a5d569bab988b42ca7a89498700878
Contents?: true
Size: 1.16 KB
Versions: 22
Compression:
Stored size: 1.16 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndicesDeleteTemplateTest < ::Test::Unit::TestCase context "Indices: Delete template" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'DELETE', method assert_equal '_template/foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.delete_template :name => 'foo' end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal '_template/foo%5Ebar', url true end.returns(FakeResponse.new) subject.indices.delete_template :name => 'foo^bar' end should "ignore 404s" do subject.expects(:perform_request).raises(NotFound) assert_nothing_raised do assert ! subject.indices.delete_template(:name => 'foo^bar', :ignore => 404) end end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems