Sha256: cb7e5a7b381feaa1e368b804dc0ffc1de4382b6c41ac8a3086fbdc63b4e64a44

Contents?: true

Size: 948 Bytes

Versions: 74

Compression:

Stored size: 948 Bytes

Contents

# frozen_string_literal: true

RSpec.describe 'catalog/facet.html.erb' do
  let(:display_facet) { double }
  let(:blacklight_config) { Blacklight::Configuration.new }

  before do
    blacklight_config.add_facet_field 'xyz', label: "Facet title"
    allow(view).to receive(:blacklight_config).and_return(blacklight_config)
    stub_template 'catalog/_facet_pagination.html.erb' => 'pagination'
    assign :facet, blacklight_config.facet_fields['xyz']
    assign :display_facet, display_facet
  end

  it "has the facet title" do
    allow(view).to receive(:render_facet_limit)
    render
    expect(rendered).to have_selector 'h1', text: "Facet title"
  end

  it "renders facet pagination" do
    allow(view).to receive(:render_facet_limit)
    render
    expect(rendered).to have_content 'pagination'
  end

  it "renders the facet limit" do
    allow(view).to receive(:render_facet_limit).with(display_facet, layout: false)
    render
  end
end

Version data entries

74 entries across 74 versions & 2 rubygems

Version Path
blacklight-7.7.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.6.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.5.1 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.5.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.4.2 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.4.1 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.4.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.3.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.2.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.1.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.1.0.alpha spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.0.1 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.0.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-7.0.0.rc2 spec/views/catalog/facet.html.erb_spec.rb