refactored the Spinach feature `features/profile/emails.feature` into

an rspec feature
This commit is contained in:
Brett Walker 2017-09-09 15:10:34 +02:00
parent 86698c960b
commit f5937926f2
1 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,56 @@
require 'rails_helper'
feature 'Profile > Emails' do
let(:user) { create(:user) }
before do
login_as(user)
end
describe 'User adds an email' do
before do
visit profile_emails_path
end
scenario 'saves the new email' do
fill_in('Email', with: 'my@email.com')
click_button('Add email address')
expect(page).to have_content('my@email.com Unverified')
expect(page).to have_content('user1@example.org Verified')
expect(page).to have_content('Resend Confirmation Email')
end
scenario 'does not add a duplicate email' do
fill_in('Email', with: user.email)
click_button('Add email address')
email = user.emails.find_by(email: user.email)
expect(email).to be_nil
expect(page).to have_content('Email has already been taken')
end
end
scenario 'User removes email' do
user.emails.create(email: 'my@email.com')
visit profile_emails_path
expect(page).to have_content("my@email.com")
click_link('Remove')
expect(page).to_not have_content("my@email.com")
end
scenario 'User confirms email' do
email = user.emails.create(email: 'my@email.com')
visit profile_emails_path
expect(page).to have_content("my@email.com Unverified")
email.confirm
expect(email.confirmed?).to be_truthy
visit profile_emails_path
expect(page).to have_content("my@email.com Verified")
end
scenario ''
end