Sha256: 399e455a9955effcb8ba514c3935d4e82f62ef50be341cc0c8fc40122ad340e7
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe "catalog/index.html.erb" do describe "with no search parameters" do before do allow(view).to receive(:has_search_parameters?).and_return(false) allow(view).to receive(:blacklight_config).and_return(Blacklight::Configuration.new) end it "renders the sidebar and content panes" do render expect(rendered).to match /id="sidebar"/ expect(rendered).to match /id="content"/ end it "renders the search_sidebar partial" do stub_template "catalog/_search_sidebar.html.erb" => "sidebar_content" render expect(rendered).to match /sidebar_content/ end end describe "with search parameters" do before do allow(view).to receive(:has_search_parameters?).and_return(true) stub_template "catalog/_results_pagination.html.erb" => "" stub_template "catalog/_search_header.html.erb" => "header_content" allow(view).to receive(:blacklight_config).and_return(Blacklight::Configuration.new) allow(view).to receive(:render_opensearch_response_metadata).and_return("") assign(:response, double(:empty? => true)) end it "renders the search_header partial" do render expect(rendered).to match /header_content/ end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
blacklight-6.3.1 | spec/views/catalog/index.html.erb_spec.rb |
blacklight-6.3.0 | spec/views/catalog/index.html.erb_spec.rb |