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