Sha256: 01e29792ae764cc8393f86c368af9ed17067ee06090af2e231bfa38874c19439
Contents?: true
Size: 1.18 KB
Versions: 11
Compression:
Stored size: 1.18 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndicesGetAliasesTest < ::Test::Unit::TestCase context "Indices: Get aliases" 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 '_aliases', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.get_aliases end should "perform request against an index" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo/_aliases', url true end.returns(FakeResponse.new) subject.indices.get_aliases :index => 'foo' end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar/_aliases', url true end.returns(FakeResponse.new) subject.indices.get_aliases :index => 'foo^bar' end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems