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/views/layouts/nav/sidebar/_profile.html.haml_spec.rb')
-rw-r--r--spec/views/layouts/nav/sidebar/_profile.html.haml_spec.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/spec/views/layouts/nav/sidebar/_profile.html.haml_spec.rb b/spec/views/layouts/nav/sidebar/_profile.html.haml_spec.rb
deleted file mode 100644
index f5a0a7a935c..00000000000
--- a/spec/views/layouts/nav/sidebar/_profile.html.haml_spec.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'layouts/nav/sidebar/_profile' do
- let(:user) { create(:user) }
-
- before do
- allow(view).to receive(:current_user).and_return(user)
- end
-
- it_behaves_like 'has nav sidebar'
- it_behaves_like 'sidebar includes snowplow attributes', 'render', 'user_side_navigation', 'user_side_navigation'
-
- it 'has a link to access tokens' do
- render
-
- expect(rendered).to have_link(_('Access Tokens'), href: profile_personal_access_tokens_path)
- end
-
- context 'when personal access tokens are disabled' do
- it 'does not have a link to access tokens' do
- allow(::Gitlab::CurrentSettings).to receive_messages(personal_access_tokens_disabled?: true)
-
- render
-
- expect(rendered).not_to have_link(_('Access Tokens'), href: profile_personal_access_tokens_path)
- end
- end
-end