Sha256: d5c44d207510e27a3dcc6512774b0bb6a8ff43cfe4a90c025fb9d21d8fb60032

Contents?: true

Size: 893 Bytes

Versions: 7

Compression:

Stored size: 893 Bytes

Contents

# frozen_string_literal: true
require 'spec_helper'

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

7 entries across 7 versions & 1 rubygems

Version Path
blacklight-6.3.1 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.3.0 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.2.0 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.1.0 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.0.2 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.0.1 spec/controllers/blacklight/catalog/component_configuration_spec.rb
blacklight-6.0.0 spec/controllers/blacklight/catalog/component_configuration_spec.rb