Sha256: d14442cb2d1a9f4412810220592812ca77bdc1df92038c9a253b3f35ea38da8b

Contents?: true

Size: 923 Bytes

Versions: 28

Compression:

Stored size: 923 Bytes

Contents

require 'spec_helper'

describe 'spotlight/about_pages/_sidebar.html.erb', type: :view do
  let(:exhibit) { FactoryGirl.create(:exhibit) }
  let!(:page1) { FactoryGirl.create(:about_page, title: 'One', weight: 4, exhibit: exhibit) }
  let!(:page2) { FactoryGirl.create(:about_page, exhibit: exhibit, title: 'Two', published: false) }
  let!(:page3) { FactoryGirl.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

28 entries across 28 versions & 1 rubygems

Version Path
blacklight-spotlight-0.19.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.18.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.17.1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.17.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.16.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.15.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.14.2 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.14.1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.14.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.13.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.12.1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.12.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.11.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.10.3 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.10.2 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.10.1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.10.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.9.2 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.9.1 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb
blacklight-spotlight-0.9.0 spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb