Sha256: 0c72d8bcd20add678ec8a5a6950d062faf0e387333a6afa1ea4c3673ff4a8d8b
Contents?: true
Size: 705 Bytes
Versions: 95
Compression:
Stored size: 705 Bytes
Contents
# frozen_string_literal: true RSpec.describe AlternateController do describe "the search results tools" do it "inherits tools from CatalogController" do expect(described_class.blacklight_config.index.document_actions).to have_key(:bookmark) end context "when deleting partials from the AlternateController" do before do described_class.blacklight_config.index.document_actions.delete(:bookmark) end it "does not affect the CatalogController" do expect(described_class.blacklight_config.index.document_actions).to be_empty expect(CatalogController.blacklight_config.index.document_actions).to have_key(:bookmark) end end end end
Version data entries
95 entries across 94 versions & 2 rubygems