Sha256: 03c4b6087fd385218c9d9e0cfcea4ee74e4e6977cbb0453603b1a409593ec09a
Contents?: true
Size: 592 Bytes
Versions: 73
Compression:
Stored size: 592 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class ListBenchmarksTest < ::Test::Unit::TestCase context "List benchmarks" 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 '_bench', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.list_benchmarks end end end end end
Version data entries
73 entries across 73 versions & 6 rubygems