Sha256: e8fe90d52787f9681e35fcc8eb4eb4546e52710e19130c0caa8b1788467a57b1

Contents?: true

Size: 1004 Bytes

Versions: 42

Compression:

Stored size: 1004 Bytes

Contents

# frozen_string_literal: true

# spec for sidebar partial in catalog show view

RSpec.describe "/catalog/_show_sidebar.html.erb" do
  let(:blacklight_config) do
    Blacklight::Configuration.new do |config|
      config.index.title_field = 'title_tsim'
    end
  end

  before do
    allow(view).to receive(:blacklight_config).and_return(blacklight_config)
    allow(view).to receive(:has_user_authentication_provider?).and_return(false)
    allow(view).to receive(:document_actions).and_return([])
    allow(view).to receive(:session_tracking_params).and_return({})
  end

  it "shows more-like-this titles in the sidebar" do
    document = SolrDocument.new id: 1, title_s: 'abc', format: 'default'
    allow(document).to receive(:more_like_this).and_return([SolrDocument.new('id' => '2', 'title_tsim' => 'Title of MLT Document')])
    render 'catalog/show_sidebar', document: document
    expect(rendered).to include("More Like This")
    expect(rendered).to include("Title of MLT Document")
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
blacklight-7.22.2 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.22.1 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.22.0 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.21.2 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.21.1 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.21.0 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.20.1 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.20.0 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.19.2 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.19.1 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.19.0 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.18.1 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.18.0 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.17.2 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.17.1 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.17.0 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.16.0 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.15.2 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.15.1 spec/views/catalog/_show_sidebar.erb_spec.rb
blacklight-7.15.0 spec/views/catalog/_show_sidebar.erb_spec.rb