Sha256: e30bc8be951eb968e9449501cffcb98cb1acc91ff6b176702475bb03be596e70
Contents?: true
Size: 622 Bytes
Versions: 71
Compression:
Stored size: 622 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class GetScriptTest < ::Test::Unit::TestCase context "Get script" 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 '_scripts/groovy/foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.get_script :lang => "groovy", :id => 'foo' end end end end end
Version data entries
71 entries across 71 versions & 6 rubygems