Files
grecia/spec/features/dashboard/poster_spec.rb
Juan Salvador Pérez García 6cc1ddb9af Fixes #231
Implements a poster feature for the proposals dashboard
2018-07-31 12:50:25 +02:00

34 lines
762 B
Ruby

require 'rails_helper'
feature 'Poster' do
let!(:proposal) { create(:proposal, :draft) }
before do
login_as(proposal.author)
visit new_proposal_dashboard_poster_path(proposal)
end
scenario 'Has a link to preview the poster' do
expect(page).to have_link('Preview')
end
scenario 'Has a link to download the poster' do
expect(page).to have_link('Download')
end
scenario 'Preview contains the proposal details' do
click_link 'Preview'
expect(page).to have_content(proposal.title)
expect(page).to have_content(proposal.code)
end
scenario 'Preview page can download the poster as well' do
click_link 'Preview'
expect(page).not_to have_link('Preview')
expect(page).to have_link('Download')
end
end