debian-mirror-gitlab/spec/graphql/types/package_type_enum_spec.rb

10 lines
279 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe GitlabSchema.types['PackageTypeEnum'] do
it 'exposes all package types' do
2021-01-03 14:25:43 +05:30
expect(described_class.values.keys).to contain_exactly(*%w[MAVEN NPM CONAN NUGET PYPI COMPOSER GENERIC GOLANG DEBIAN])
2020-07-28 23:09:34 +05:30
end
end