summaryrefslogtreecommitdiff
path: root/spec/graphql/types/release_assets_type_spec.rb
blob: 0166f87bf47486a996b6baf2595720c1f5367bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

require 'spec_helper'

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

  it 'has the expected fields' do
    expected_fields = %w[
      count links sources
    ]

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

  describe 'links field' do
    subject { described_class.fields['links'] }

    it { is_expected.to have_graphql_type(Types::ReleaseAssetLinkType.connection_type) }
  end

  describe 'sources field' do
    subject { described_class.fields['sources'] }

    it { is_expected.to have_graphql_type(Types::ReleaseSourceType.connection_type) }
  end
end