Sha256: 224ad391e1dc8144eb98248502636c4c0541a7a5001f76ed71ddacc5120b5b63

Contents?: true

Size: 1.12 KB

Versions: 6

Compression:

Stored size: 1.12 KB

Contents

require 'spec_helper'

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

describe "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 "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

6 entries across 6 versions & 1 rubygems

Version Path
sufia-6.7.0 spec/views/my/facet.html.erb_spec.rb
sufia-6.6.1 spec/views/my/facet.html.erb_spec.rb
sufia-6.6.0 spec/views/my/facet.html.erb_spec.rb
sufia-6.5.0 spec/views/my/facet.html.erb_spec.rb
sufia-6.4.0 spec/views/my/facet.html.erb_spec.rb
sufia-6.3.0 spec/views/my/facet.html.erb_spec.rb