Sha256: d77efc4e33b8ac3b03f1fc19bf367e26f3738ed0febc318ddb6b1b134299071f
Contents?: true
Size: 622 Bytes
Versions: 71
Compression:
Stored size: 622 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class DeleteTemplateTest < ::Test::Unit::TestCase context "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 '_search/template/foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.delete_template :id => "foo" end end end end end
Version data entries
71 entries across 71 versions & 6 rubygems