Sha256: ef3e1cc5584b79062d83b108b717cfb146754c06410dca5943620246796e17e9
Contents?: true
Size: 669 Bytes
Versions: 71
Compression:
Stored size: 669 Bytes
Contents
require 'test_helper' module Elasticsearch module Test class PutScriptTest < ::Test::Unit::TestCase context "Put script" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'PUT', method assert_equal '_scripts/groovy/foo', url assert_equal Hash.new, params assert_equal 'bar', body[:script] true end.returns(FakeResponse.new) subject.put_script :lang => 'groovy', :id => 'foo', :body => { :script => 'bar' } end end end end end
Version data entries
71 entries across 71 versions & 6 rubygems