gitlab-org--gitlab-foss/spec/features/profile_spec.rb

38 lines
969 B
Ruby
Raw Normal View History

2013-02-11 12:06:37 +00:00
require 'spec_helper'
describe 'Profile account page', feature: true do
2013-02-11 12:06:37 +00:00
let(:user) { create(:user) }
before do
login_as :user
end
describe 'when signup is enabled' do
2013-02-11 12:06:37 +00:00
before do
2015-05-21 21:49:06 +00:00
allow_any_instance_of(ApplicationSetting).
to receive(:signup_enabled?).and_return(true)
2013-10-09 16:03:09 +00:00
visit profile_account_path
2013-02-11 12:06:37 +00:00
end
2013-04-01 15:35:29 +00:00
it { expect(page).to have_content('Remove account') }
2013-04-01 15:35:29 +00:00
it 'should delete the account' do
expect { click_link 'Delete account' }.to change { User.count }.by(-1)
expect(current_path).to eq(new_user_session_path)
2013-02-11 12:06:37 +00:00
end
end
describe 'when signup is disabled' do
2013-02-11 12:06:37 +00:00
before do
2015-05-21 21:49:06 +00:00
allow_any_instance_of(ApplicationSetting).
to receive(:signup_enabled?).and_return(false)
2013-10-09 16:03:09 +00:00
visit profile_account_path
2013-02-11 12:06:37 +00:00
end
it 'should not have option to remove account' do
expect(page).not_to have_content('Remove account')
expect(current_path).to eq(profile_account_path)
2013-02-11 12:06:37 +00:00
end
end
2013-04-01 15:35:29 +00:00
end