Sha256: 3455f6041da954a84a202e048354379e6907f9f157dd9d41f6d48dd091f30698
Contents?: true
Size: 1.06 KB
Versions: 65
Compression:
Stored size: 1.06 KB
Contents
require 'test_helper' module Elasticsearch module Test class GetTemplateTest < ::Test::Unit::TestCase context "Get template" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal '_search/template/foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.get_template :id => "foo" end should "raise a NotFound exception" do subject.expects(:perform_request).raises(NotFound) assert_raise NotFound do subject.get_template :id => "foo" end end should "catch a NotFound exception with the ignore parameter" do subject.expects(:perform_request).raises(NotFound) assert_nothing_raised do subject.get_template :id => "foo", :ignore => 404 end end end end end end
Version data entries
65 entries across 65 versions & 6 rubygems