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