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

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

require 'spec_helper'

RSpec.describe GitlabSchema.types['PackageDependencyType'] do
  it 'exposes all depeendency type values' do
    expect(described_class.values.keys).to contain_exactly(*%w[DEPENDENCIES DEV_DEPENDENCIES BUNDLE_DEPENDENCIES PEER_DEPENDENCIES])
  end
end