Sha256: 1e75d624ed8f03c7381643a30ec38289312f83f1f0123c7d645976bcb20e8a80
Contents?: true
Size: 833 Bytes
Versions: 14
Compression:
Stored size: 833 Bytes
Contents
# frozen_string_literal: true RSpec.describe CatalogController do subject do Class.new do include Blacklight::Configurable def some_existing_action 1 end end 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
14 entries across 14 versions & 1 rubygems