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