Sha256: 5348487a4e38b2777e1800c1f183bc04d61d6311b7a490f3fb839e07a163d7ce

Contents?: true

Size: 994 Bytes

Versions: 16

Compression:

Stored size: 994 Bytes

Contents

# frozen_string_literal: true

describe 'spotlight/exhibits/_exhibit_card_front.html.erb', type: :view do
  let(:exhibit) { FactoryBot.create(:exhibit) }
  let(:p) { 'spotlight/exhibits/exhibit_card_front' }

  context 'for an exhibit without a thumbnail' do
    before do
      exhibit.update(thumbnail_id: nil)
    end

    it 'has a placeholder thumbnail' do
      render p, exhibit: exhibit

      expect(rendered).to have_selector 'img.default-thumbnail'
    end
  end

  it 'has a thumbnail' do
    render p, exhibit: exhibit

    expect(rendered).to have_selector 'img'
  end

  it 'has a title' do
    render p, exhibit: exhibit

    expect(rendered).to have_selector '.card-title', text: exhibit.title
  end

  context 'for an unpublished exhibit' do
    before do
      exhibit.update(published: false)
    end

    it 'has an unpublished banner' do
      render p, exhibit: exhibit

      expect(rendered).to have_selector '.label.unpublished', text: 'Unpublished'
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
blacklight-spotlight-2.13.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.12.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.12.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.11.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.10.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.9.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.8.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.7.2 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.7.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.7.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.6.1.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.6.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.6.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.5.2 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.5.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.5.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb