Sha256: ce998fd06711b973aeaee6f4a38f0adeb4ffe31528f2acb80ecfff06b1e629cc

Contents?: true

Size: 871 Bytes

Versions: 5

Compression:

Stored size: 871 Bytes

Contents

# frozen_string_literal: true

describe Blacklight::DefaultComponentConfiguration do
  subject do
    Class.new do
      include Blacklight::Configurable
      include Blacklight::DefaultComponentConfiguration

      def some_existing_action
        1
      end
    end
  end

  describe ".add_show_tools_partial" do
    it "should define an action method" do
      subject.add_show_tools_partial :xyz
      expect(subject.new).to respond_to :xyz
    end

    it "should not replace an existing method" do
      subject.add_show_tools_partial :some_existing_action
      expect(subject.new.some_existing_action).to eq 1
    end

    it "should allow the configuration to opt out of creating a method" do
      subject.add_show_tools_partial :some_missing_action, define_method: false
      expect(subject.new).not_to respond_to :some_missing_action
    end
  end

  

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blacklight-6.5.0 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.4.2 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.4.1 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.4.0 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.3.3 spec/controllers/blacklight/catalog/component_configuration_spec.rb