Sha256: a99a1da3b7da164af09a244543a99be7211f52d9d71df3849a6a2a93fbcfc015
Contents?: true
Size: 583 Bytes
Versions: 77
Compression:
Stored size: 583 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class CatShardsTest < ::Test::Unit::TestCase context "Cat: Shards" 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/shards', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.cat.shards end end end end end
Version data entries
77 entries across 77 versions & 6 rubygems