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/models/project_spec.rb')
-rw-r--r--spec/models/project_spec.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index 7222580e115..5eb31430ccd 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -5,7 +5,6 @@ require 'spec_helper'
describe Project do
include ProjectForksHelper
include GitHelpers
- include ExternalAuthorizationServiceHelpers
it_behaves_like 'having unique enum values'
@@ -4418,25 +4417,6 @@ describe Project do
end
end
- describe '#external_authorization_classification_label' do
- it 'falls back to the default when none is configured' do
- enable_external_authorization_service_check
-
- expect(build(:project).external_authorization_classification_label)
- .to eq('default_label')
- end
-
- it 'returns the classification label if it was configured on the project' do
- enable_external_authorization_service_check
-
- project = build(:project,
- external_authorization_classification_label: 'hello')
-
- expect(project.external_authorization_classification_label)
- .to eq('hello')
- end
- end
-
describe "#pages_https_only?" do
subject { build(:project) }