Sha256: 60431aff0e1ae481d02584de43e1f137f046598b68dda1dfd697c12e8665befc
Contents?: true
Size: 1.35 KB
Versions: 88
Compression:
Stored size: 1.35 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndicesCreateTest < ::Test::Unit::TestCase context "Indices: Create" do subject { FakeClient.new } should "require the :index argument" do assert_raise ArgumentError do subject.indices.create end end should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'PUT', method assert_equal 'foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.create :index => 'foo' end should "pass the URL parameters" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo', url assert_equal '1s', params[:timeout] true end.returns(FakeResponse.new) subject.indices.create :index => 'foo', :timeout => '1s' end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar', url true end.returns(FakeResponse.new) subject.indices.create :index => 'foo^bar' end end end end end
Version data entries
88 entries across 88 versions & 6 rubygems