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

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

require 'spec_helper'

RSpec.describe GitlabSchema.types['JobArtifactFileType'] do
  it 'exposes all job artifact file types' do
    expect(described_class.values.keys).to contain_exactly(
      *::Ci::JobArtifact::TYPE_AND_FORMAT_PAIRS.keys.map(&:to_s).map(&:upcase)
    )
  end
end