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