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