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

package_type_enum_spec.rb « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80a20a68bc27ba6870f9685098a2bf41ea387ba0 (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])
  end
end