Sha256: 4b891eadcc0af7eba197e3f598bf46b73113fb28fb660c6927527272a5fe5660
Contents?: true
Size: 627 Bytes
Versions: 57
Compression:
Stored size: 627 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class UpdateByQueryTest < ::Test::Unit::TestCase context "Update by query" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'POST', method assert_equal 'foo/_update_by_query', url assert_equal Hash.new, params assert_equal nil, body true end.returns(FakeResponse.new) subject.update_by_query :index => 'foo' end end end end end
Version data entries
57 entries across 57 versions & 6 rubygems