Sha256: 49fb1e2b99dbe01be3adb62ae8590bdecc308fcf0a0c9cd1b3b41c379937496d
Contents?: true
Size: 988 Bytes
Versions: 60
Compression:
Stored size: 988 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class TasksListTest < ::Test::Unit::TestCase context "Tasks: List" 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 '_tasks', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.tasks.list end should "perform correct request with :task_id" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal '_tasks/foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.tasks.list :task_id => 'foo' end end end end end
Version data entries
60 entries across 60 versions & 6 rubygems