Sha256: e56621493e91553cb4554b12496f15db0443dc81e9818cd1ff0853dc795db186
Contents?: true
Size: 1.1 KB
Versions: 9
Compression:
Stored size: 1.1 KB
Contents
describe 'spotlight/resources/_external_resources_form.html.erb', type: :view do let(:blacklight_config) { Blacklight::Configuration.new } let(:exhibit) { stub_model(Spotlight::Exhibit) } before do allow(view).to receive_messages(blacklight_config: blacklight_config) allow(view).to receive(:current_exhibit).and_return(exhibit) allow(view).to receive_messages(current_page?: true) # Assumes that the second backend is the "Simple" I18n.backend.backends.second.store_translations( :en, a: { title: 'a_title' }, b: { title: 'b_title' }, c: { title: 'c_title' } ) end it 'renders the configured partials' do allow(Spotlight::Engine.config).to receive(:external_resources_partials).and_return(%w(a b c)) stub_template '_a.html.erb' => 'a_template' stub_template '_b.html.erb' => 'b_template' stub_template '_c.html.erb' => 'c_template' render expect(rendered).to have_content 'a_template' expect(rendered).to have_content 'b_template' expect(rendered).to have_content 'c_template' end end
Version data entries
9 entries across 9 versions & 1 rubygems