Sha256: 61efe2d3dd1172288bbcbd5d0c53fab635e99c6e3fe1e1182d5fcb2b7df513e2
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndexDocumentTest < ::Test::Unit::TestCase context "Creating a document with the #create method" do subject { FakeClient.new } should "perform the create request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'POST', method assert_equal 'foo/bar', url assert_equal({:op_type => 'create'}, params) assert_equal({:foo => 'bar'}, body) true end.returns(FakeResponse.new) subject.create :index => 'foo', :type => 'bar', :body => {:foo => 'bar'} end should "perform the create request with a specific ID" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'PUT', method assert_equal 'foo/bar/123', url assert_equal 'create', params[:op_type] assert_nil params[:id] assert_equal({:foo => 'bar'}, body) true end.returns(FakeResponse.new) subject.create :index => 'foo', :type => 'bar', :id => '123', :body => {:foo => 'bar'} end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
elasticsearch-api-0.4.0 | test/unit/create_document_test.rb |
elasticsearch-api-0.0.2 | test/unit/create_document_test.rb |