Sha256: e9afab7c5adce62b0511874535b1d57a0d4ffeefdd66dfa26774682ea70baa51

Contents?: true

Size: 538 Bytes

Versions: 45

Compression:

Stored size: 538 Bytes

Contents

# frozen_string_literal: true

RSpec.describe Blacklight::Configuration::ViewConfig do
  subject { described_class.new(key: key, label: label) }

  let(:key) { 'my_view' }
  let(:label) { 'some label' }

  describe '#display_label' do
    it "looks up the label to display for the given document and field" do
      allow(I18n).to receive(:t).with(:"blacklight.search.view_title.my_view", default: [:"blacklight.search.view.my_view", label, nil, "My view"]).and_return('x')
      expect(subject.display_label).to eq 'x'
    end
  end
end

Version data entries

45 entries across 45 versions & 2 rubygems

Version Path
blacklight-7.18.0 spec/lib/blacklight/configuration/view_config_spec.rb
blacklight-7.17.2 spec/lib/blacklight/configuration/view_config_spec.rb
blacklight-7.17.1 spec/lib/blacklight/configuration/view_config_spec.rb
blacklight-7.17.0 spec/lib/blacklight/configuration/view_config_spec.rb
blacklight-7.16.0 spec/lib/blacklight/configuration/view_config_spec.rb