Sha256: 4c46457e56a65d213222d02941441913436f5d026f79d28d8b0bf5aa976af162
Contents?: true
Size: 584 Bytes
Versions: 24
Compression:
Stored size: 584 Bytes
Contents
feature 'About Pages Adminstration', js: true do let(:exhibit) { FactoryBot.create(:exhibit) } let(:exhibit_curator) { FactoryBot.create(:exhibit_curator, exhibit: exhibit) } before { login_as exhibit_curator } it 'is able to create new pages' do login_as exhibit_curator visit spotlight.exhibit_dashboard_path(exhibit) click_link 'About pages' add_new_page_via_button('My New Page') expect(page).to have_content 'The about page was created.' expect(page).to have_css('li.dd-item') expect(page).to have_css('h3', text: 'My New Page') end end
Version data entries
24 entries across 24 versions & 1 rubygems