Sha256: 217553932d5e517ba68bb2f664d9c317ae5ec56c8432254fef6fa4dd6c0d2d4d

Contents?: true

Size: 1.05 KB

Versions: 7

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

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

  before do
    allow(Blacklight::FacetComponent).to receive(:new).and_return(component)
    allow(view).to receive(:render).and_call_original
    allow(view).to receive(:render).with(component)

    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
    render
    expect(rendered).to have_css 'h1', text: "Facet title"
  end

  it "renders facet pagination" do
    render
    expect(rendered).to have_content 'pagination'
  end

  it "renders the facet limit" do
    render
    expect(view).to have_received(:render).with(component)
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
blacklight-8.6.1 spec/views/catalog/facet.html.erb_spec.rb
blacklight-8.6.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-8.5.1 spec/views/catalog/facet.html.erb_spec.rb
blacklight-8.5.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-8.4.0 spec/views/catalog/facet.html.erb_spec.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/blacklight-8.3.0/spec/views/catalog/facet.html.erb_spec.rb
blacklight-8.3.0 spec/views/catalog/facet.html.erb_spec.rb