Sha256: d34b6452c6978ac60c0200c561789a8ec0437b2d101a2baf4ca584fc94a93875

Contents?: true

Size: 884 Bytes

Versions: 12

Compression:

Stored size: 884 Bytes

Contents

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 '.callout.callout-danger.row'
    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

12 entries across 12 versions & 1 rubygems

Version Path
blacklight-spotlight-2.2.1 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.2.0 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.1.0 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.2 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.1 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.0 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc6 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc5 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc4 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc3 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc2 spec/views/spotlight/exhibits/edit.html.erb_spec.rb
blacklight-spotlight-2.0.0.rc1 spec/views/spotlight/exhibits/edit.html.erb_spec.rb