Sha256: ff31695290b1617114e3d3fb57e5140ab6f0b0dc4b3ea43cd1fca51f691ef528
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
require 'spec_helper' describe Solrizer::Common do before do class Foo include Solrizer::Common end end after do Object.send(:remove_const, :Foo) end it "should handle many field types" do solr_doc = {} Foo.create_and_insert_terms('my_name', 'value', [:displayable, :searchable, :sortable], solr_doc) solr_doc.should == {'my_name_ssm' => ['value'], 'my_name_si' => 'value', 'my_name_teim' => ['value']} end it "should handle dates that are searchable" do solr_doc = {} Foo.create_and_insert_terms('my_name', Date.parse('2013-01-10'), [:stored_searchable], solr_doc) solr_doc.should == {'my_name_dtsim' => ['2013-01-10T00:00:00Z']} end it "should handle dates that are stored_sortable" do solr_doc = {} Foo.create_and_insert_terms('my_name', Date.parse('2013-01-10'), [:stored_sortable], solr_doc) solr_doc.should == {'my_name_dtsi' => '2013-01-10T00:00:00Z'} end it "should handle dates that are displayable" do solr_doc = {} Foo.create_and_insert_terms('my_name', Date.parse('2013-01-10'), [:displayable], solr_doc) solr_doc.should == {'my_name_ssm' => ['2013-01-10']} end it "should handle dates that are sortable" do solr_doc = {} Foo.create_and_insert_terms('my_name', Date.parse('2013-01-10'), [:sortable], solr_doc) solr_doc.should == {'my_name_dti' => '2013-01-10T00:00:00Z'} end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
solrizer-3.2.0 | spec/units/common_spec.rb |
solrizer-3.1.1 | spec/units/common_spec.rb |
solrizer-3.1.0 | spec/units/common_spec.rb |