Sha256: 88a5ad6fa286971c67936a08cedf7e375fceea57538082a52755735730708b95
Contents?: true
Size: 902 Bytes
Versions: 2
Compression:
Stored size: 902 Bytes
Contents
# frozen_string_literal: true describe 'spotlight/exhibits/edit', type: :view do let(:exhibit) { FactoryBot.create(:exhibit) } before do assign(:exhibit, exhibit) allow(view).to receive_messages( current_exhibit: exhibit, can?: true, import_exhibit_path: '/', get_exhibit_path: '/', exhibit_filters_path: '/', exhibit_languages_path: '/', add_exhibit_language_dropdown_options: [], default_language?: true ) end it 'renders the edit page form' do render expect(rendered).to have_selector "form[action=\"#{spotlight.exhibit_path(exhibit)}\"]" expect(rendered).to have_selector '.alert.alert-danger' expect(rendered).to have_content 'This action is irreversible' expect(rendered).to have_link 'Export data', href: spotlight.import_exhibit_path(exhibit) expect(rendered).to have_button 'Import data' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
blacklight-spotlight-3.0.0.alpha.2 | spec/views/spotlight/exhibits/edit.html.erb_spec.rb |
blacklight-spotlight-3.0.0.alpha.1 | spec/views/spotlight/exhibits/edit.html.erb_spec.rb |