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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/profile_spec.rb')
-rw-r--r--spec/features/profile_spec.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/spec/features/profile_spec.rb b/spec/features/profile_spec.rb
deleted file mode 100644
index 3d36a3c02d0..00000000000
--- a/spec/features/profile_spec.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-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
- ApplicationSetting.any_instance.stub(signup_enabled?: 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
- ApplicationSetting.any_instance.stub(signup_enabled?: 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