Sha256: c8c46e1ff26525453b6160b59943f88651d6cdc3d2d009cc41c819e2d4554b59

Contents?: true

Size: 1.23 KB

Versions: 32

Compression:

Stored size: 1.23 KB

Contents

describe 'spotlight/home_pages/_empty.html.erb', type: :view do
  describe 'resource providers' do
    before do
      allow(view).to receive_messages(current_exhibit: FactoryGirl.create(:exhibit),
                                      can?: true,
                                      edit_exhibit_path: '/',
                                      edit_exhibit_appearance_path: '/',
                                      exhibit_roles_path: '/',
                                      admin_exhibit_catalog_path: '/',
                                      edit_exhibit_metadata_configuration_path: '/',
                                      edit_exhibit_search_configuration_path: '/')
    end
    it 'has a list item with a link to add items when there are resource partials configured' do
      allow(Spotlight::Engine.config).to receive_messages(resource_partials: [true])
      render
      expect(rendered).to have_css('li a', text: 'Curation > Items')
    end
    it 'does not have a list item with a link to add items when there are no resource partials configured' do
      allow(Spotlight::Engine.config).to receive_messages(resource_partials: [])
      render
      expect(rendered).to_not have_css('li a', text: 'Curation > Items')
    end
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
blacklight-spotlight-1.0.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-1.0.0.alpha2 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-1.0.0.alpha1 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.34.1 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.34.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.33.3 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.33.2 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.33.1 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.33.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.32.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.31.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.30.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.29.1 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.29.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.28.3 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.28.2 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.28.1 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.28.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.27.0 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb
blacklight-spotlight-0.26.1 spec/views/spotlight/home_pages/_empty.html.erb_spec.rb