Sha256: 005557b4261e629910bbdf5c47574ac595b0e33ddc28f3010d40d73d1e7f8123

Contents?: true

Size: 897 Bytes

Versions: 11

Compression:

Stored size: 897 Bytes

Contents

describe 'spotlight/about_pages/_sidebar.html.erb', type: :view do
  let(:exhibit) { FactoryBot.create(:exhibit) }
  let!(:page1) { FactoryBot.create(:about_page, title: 'One', weight: 4, exhibit: exhibit) }
  let!(:page2) { FactoryBot.create(:about_page, exhibit: exhibit, title: 'Two', published: false) }
  let!(:page3) { FactoryBot.create(:about_page, exhibit: exhibit, title: 'Three', weight: 3) }

  before do
    allow(view).to receive_messages(current_exhibit: exhibit)
    allow(view).to receive_messages(exhibit_about_page_path: '/about/9')
  end

  it 'renders a list of pages' do
    render
    # Checking that they are sorted accoding to weight
    expect(rendered).to have_selector '#sidebar ul.sidenav li:nth-child(1) a', text: 'Three'
    expect(rendered).to have_selector '#sidebar ul.sidenav li:nth-child(2) a', text: 'One'
    expect(rendered).not_to have_link 'Two'
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blacklight-spotlight-2.0.0.rc5 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc4 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc3 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc2 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-1.5.1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-1.4.1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-1.4.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-1.3.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-1.2.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-1.1.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb