Sha256: e998645b407f0849a89d22bdbcd8084e25d9dbf78dbc7c820126d18ffbb26590
Contents?: true
Size: 1017 Bytes
Versions: 73
Compression:
Stored size: 1017 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class CatFielddataTest < ::Test::Unit::TestCase context "Cat: Fielddata" 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 '_cat/fielddata', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.cat.fielddata end should "pass the fields in the URL" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal '_cat/fielddata/foo,bar', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.cat.fielddata :fields => ['foo', 'bar'] end end end end end
Version data entries
73 entries across 73 versions & 6 rubygems