Sha256: 20e3a40ce0b62ca0c8c56199b9c1f96c7dfdac046bb75ddeb22af959bd619e00
Contents?: true
Size: 701 Bytes
Versions: 77
Compression:
Stored size: 701 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class CountPercolateTest < ::Test::Unit::TestCase context "Count percolate" 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 'foo/bar/_percolate/count', url assert_equal Hash.new, params assert_equal 'bar', body[:doc][:foo] true end.returns(FakeResponse.new) subject.count_percolate :index => 'foo', :type => 'bar', :body => { :doc => { :foo => 'bar' } } end end end end end
Version data entries
77 entries across 77 versions & 6 rubygems