summaryrefslogtreecommitdiff
path: root/spec/graphql/types/ci/pipeline_scope_enum_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/types/ci/pipeline_scope_enum_spec.rb')
-rw-r--r--spec/graphql/types/ci/pipeline_scope_enum_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/graphql/types/ci/pipeline_scope_enum_spec.rb b/spec/graphql/types/ci/pipeline_scope_enum_spec.rb
new file mode 100644
index 00000000000..9dc6e5c6fae
--- /dev/null
+++ b/spec/graphql/types/ci/pipeline_scope_enum_spec.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Types::Ci::PipelineScopeEnum do
+ it 'exposes all pipeline scopes' do
+ expect(described_class.values.keys).to contain_exactly(
+ *::Ci::PipelinesFinder::ALLOWED_SCOPES.keys.map(&:to_s)
+ )
+ end
+end