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/projects/classification_label_on_project_pages_spec.rb')
-rw-r--r--spec/features/projects/classification_label_on_project_pages_spec.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/spec/features/projects/classification_label_on_project_pages_spec.rb b/spec/features/projects/classification_label_on_project_pages_spec.rb
deleted file mode 100644
index 92f8aa8eb8d..00000000000
--- a/spec/features/projects/classification_label_on_project_pages_spec.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-describe 'Classification label on project pages' do
- let(:project) do
- create(:project, external_authorization_classification_label: 'authorized label')
- end
- let(:user) { create(:user) }
-
- before do
- stub_application_setting(external_authorization_service_enabled: true)
- project.add_maintainer(user)
- sign_in(user)
- end
-
- it 'shows the classification label on the project page' do
- visit project_path(project)
-
- expect(page).to have_content('authorized label')
- end
-end