Sha256: 89b5cdbf0a5bb40e338bffd16ff5d21892a757f7b1739af4103bc56f286ce16c
Contents?: true
Size: 464 Bytes
Versions: 4
Compression:
Stored size: 464 Bytes
Contents
# frozen_string_literal: true require "rails_helper" describe Geoblacklight::SolrDocument do let(:document) { SolrDocument.new(document_attributes) } describe "#sidecar" do let(:document_attributes) { json_data("umn_iiif_jpg") } it "responds to sidecar method" do expect(document).to respond_to :sidecar end it "responds with SolrDocumentSidecar" do expect(document.sidecar).to be_kind_of SolrDocumentSidecar end end end
Version data entries
4 entries across 4 versions & 1 rubygems