debian-mirror-gitlab/spec/graphql/types/ci/pipeline_scope_enum_spec.rb
2021-12-11 22:18:48 +05:30

11 lines
277 B
Ruby

# 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