Sha256: e16e48c1814021bf519258ef905e7fefc556d9572c5cb43112a5f40c5d9b4e9a
Contents?: true
Size: 934 Bytes
Versions: 47
Compression:
Stored size: 934 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class IngestGetPipelineTest < ::Test::Unit::TestCase context "Ingest: Get pipeline" 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 '_ingest/pipeline/foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.ingest.get_pipeline :id => 'foo' end should "URL-escape the ID" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal '_ingest/pipeline/foo%5Ebar', url true end.returns(FakeResponse.new) subject.ingest.get_pipeline :id => 'foo^bar' end end end end end
Version data entries
47 entries across 47 versions & 6 rubygems