Sha256: 3b857d2f3752047d20142725fcd7025eb6fcd620876f84f6b6ec247d2e462820
Contents?: true
Size: 890 Bytes
Versions: 22
Compression:
Stored size: 890 Bytes
Contents
require 'spec_helper' module Spotlight describe 'spotlight/exhibits/edit', type: :view do let(:exhibit) { FactoryGirl.create(:exhibit) } before do assign(:exhibit, exhibit) allow(view).to receive_messages(current_exhibit: exhibit) allow(view).to receive_messages(can?: true) allow(view).to receive_messages(import_exhibit_path: '/') allow(view).to receive_messages(get_exhibit_path: '/') 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 end
Version data entries
22 entries across 22 versions & 1 rubygems