Sha256: 12e216350f67cfcc62e2ef1ee3f07bcc12a5a2ab920f67018b2f514c8d9e33ac

Contents?: true

Size: 892 Bytes

Versions: 88

Compression:

Stored size: 892 Bytes

Contents

# frozen_string_literal: true

RSpec.describe "shared/_user_util_links" do
  let(:blacklight_config) do
    Blacklight::Configuration.new.configure do |config|
      config.navbar.partials = { bookmark: Blacklight::Configuration::ToolConfig.new(partial: 'blacklight/nav/bookmark', if: :render_bookmarks_control?) }
    end
  end

  it "renders the correct bookmark count" do
    count = rand(99)
    allow(view).to receive(:blacklight_config).and_return(blacklight_config)
    allow(controller).to receive(:render_bookmarks_control?).and_return true
    allow(view).to receive(:has_user_authentication_provider?).and_return false
    allow(view).to receive_message_chain(:current_or_guest_user, :bookmarks, :count).and_return(count)
    render "shared/user_util_links"
    expect(rendered).to have_selector('#bookmarks_nav span.badge[data-role=bookmark-counter]', text: count.to_s)
  end
end

Version data entries

88 entries across 88 versions & 2 rubygems

Version Path
blacklight-7.33.1 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-8.0.0.beta4 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-8.0.0.beta3 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-8.0.0.beta2 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-8.0.0.beta1 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.33.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.32.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.31.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.30.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.29.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.28.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.27.1 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.27.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.26.1 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.26.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.25.3 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.25.2 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.25.1 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.25.0 spec/views/shared/_user_util_links.html.erb_spec.rb
blacklight-7.24.0 spec/views/shared/_user_util_links.html.erb_spec.rb