Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rule_package_type_enum_spec.rb « protection « packages « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0d9772f285c57cc9a15b17afca67fabcaaffc6f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['PackagesProtectionRulePackageType'], feature_category: :package_registry do
  it 'exposes all options' do
    expect(described_class.values.keys).to contain_exactly('NPM')
  end
end