Sha256: 02799448f25ed76c7ed2bbe399ebec1a545a26253013633c9487e248e16f84bd
Contents?: true
Size: 973 Bytes
Versions: 74
Compression:
Stored size: 973 Bytes
Contents
# frozen_string_literal: true RSpec.describe Blacklight::DefaultComponentConfiguration do subject do Class.new do include Blacklight::Configurable include Blacklight::DefaultComponentConfiguration def some_existing_action 1 end end end before do allow(Deprecation).to receive(:warn) end describe ".add_show_tools_partial" do it "defines an action method" do subject.blacklight_config.add_show_tools_partial :xyz expect(subject.new).to respond_to :xyz end it "does not replace an existing method" do subject.blacklight_config.add_show_tools_partial :some_existing_action expect(subject.new.some_existing_action).to eq 1 end it "allows the configuration to opt out of creating a method" do subject.blacklight_config.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
74 entries across 74 versions & 2 rubygems