debian-mirror-gitlab/spec/features/users/add_email_to_existing_account_spec.rb
2020-06-23 00:09:42 +05:30

18 lines
506 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'AdditionalEmailToExistingAccount' do
describe 'add secondary email associated with account' do
let(:user) { create(:user) }
it 'verifies confirmation of additional email' do
sign_in(user)
email = create(:email, user: user)
visit email_confirmation_path(confirmation_token: email.confirmation_token)
expect(page).to have_content 'Your email address has been successfully confirmed.'
end
end
end