summaryrefslogtreecommitdiff
path: root/spec/graphql/types/evidence_type_spec.rb
blob: 92134e74d5180a4abefd24f7786c845d1d743c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['ReleaseEvidence'] do
  it { expect(described_class).to require_graphql_authorizations(:download_code) }

  it 'has the expected fields' do
    expected_fields = %w[
      id sha filepath collected_at
    ]

    expect(described_class).to include_graphql_fields(*expected_fields)
  end
end