summaryrefslogtreecommitdiff
path: root/spec/graphql/types/package_type_enum_spec.rb
blob: 407d5786f65351ceb285dc552642b46fe742a169 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['PackageTypeEnum'] do
  it 'exposes all package types' do
    expect(described_class.values.keys).to contain_exactly(*%w[MAVEN NPM CONAN NUGET PYPI COMPOSER GENERIC GOLANG DEBIAN])
  end
end