Sha256: 7e11663b1242b0d8c162b2e56df3ce4ed18344fe3785396a9419c36a0e9b9859
Contents?: true
Size: 618 Bytes
Versions: 10
Compression:
Stored size: 618 Bytes
Contents
require 'spec_helper' describe MarkLogic::DatabaseSettings::GeospatialElementIndex do let(:index) do MarkLogic::DatabaseSettings::GeospatialElementIndex.new("element") end describe "new" do it "should populate correctly" do expect(index.to_json).to eq( { "geospatial-element-index" => { "namespace-uri" => "", "localname" => "element", "coordinate-system" => "wgs84", "point-format" => "point", "range-value-positions" => false, "invalid-values" => "reject" } } ) end end end
Version data entries
10 entries across 10 versions & 1 rubygems