Sha256: 8fa11a40573779a2993f01acce0a7a457dcfca8ca4c179e6313cc659c5c4b1e1
Contents?: true
Size: 913 Bytes
Versions: 36
Compression:
Stored size: 913 Bytes
Contents
# frozen_string_literal: true describe "Blacklight::Document::Email" do before(:all) do SolrDocument.use_extension( Blacklight::Document::Sms ) end it "should only return values that are available in the field semantics" do doc = SolrDocument.new({:id=>"1234", :title_display=>"My Title", :author_display=>"Joe Schmoe"}) sms_text = doc.to_sms_text expect(sms_text).to match(/My Title by Joe Schmoe/) end it "should handle multi-values fields correctly and only take the first" do doc = SolrDocument.new({:id=>"1234", :title_display=>["My Title", "My Alt. Title"]}) sms_text = doc.to_sms_text expect(sms_text).to match(/My Title/) expect(sms_text).to_not match(/My Alt\. Title/) end it "should return nil if there are no valid field semantics to build the email body from" do doc = SolrDocument.new({:id=>"1234"}) expect(doc.to_sms_text).to be_nil end end
Version data entries
36 entries across 36 versions & 1 rubygems