Sha256: 7b8f3861d626d18e18cc51e81265a14000b4cbb78fd276e7c329eba198971b92

Contents?: true

Size: 1.11 KB

Versions: 10

Compression:

Stored size: 1.11 KB

Contents

# Note: this is a direct copy of the corresponding test in Blacklight
# with changes for "views/my" instead of "views/catalog"

describe "hyrax/my/facet.html.erb", type: :view 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)
    allow(view).to receive(:blacklight_config).and_return(blacklight_config)
    stub_template "hyrax/my/_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 "h3", 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
    expect(view).to receive(:render_facet_limit).with(display_facet, layout: false)
    render
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
hyrax-1.1.1 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.1.0 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.0.5 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.0.4 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.0.3 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.0.2 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.0.1 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.0.0.rc2 spec/views/hyrax/my/facet.html.erb_spec.rb
hyrax-1.0.0.rc1 spec/views/hyrax/my/facet.html.erb_spec.rb
test_hyrax-0.0.1.alpha spec/views/hyrax/my/facet.html.erb_spec.rb