Welcome to mirror list, hosted at ThFree Co, Russian Federation.

profile_spec.rb « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fe2e610555ddcfa30f30d517ae737bf193cd7e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require 'spec_helper'

describe 'Profile account page', feature: true do
  let(:user) { create(:user) }

  before do
    login_as :user
  end

  describe 'when signup is enabled' do
    before do
      allow_any_instance_of(ApplicationSetting).
        to receive(:signup_enabled?).and_return(true)
      visit profile_account_path
    end

    it { expect(page).to have_content('Remove account') }

    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)
    end
  end

  describe 'when signup is disabled' do
    before do
      allow_any_instance_of(ApplicationSetting).
        to receive(:signup_enabled?).and_return(false)
      visit profile_account_path
    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)
    end
  end
end