Sha256: 86466754b01328e789a6bafb1d36d743b059eecd1737ce97269f3eef5a0a1431

Contents?: true

Size: 964 Bytes

Versions: 15

Compression:

Stored size: 964 Bytes

Contents

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

15 entries across 15 versions & 1 rubygems

Version Path
blacklight-spotlight-2.0.2 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc6 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc5 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc4 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc3 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc2 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-1.5.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-1.4.1 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-1.4.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-1.3.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-1.2.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb
blacklight-spotlight-1.1.0 spec/views/spotlight/exhibits/_exhibit_card_front.html.erb_spec.rb