summaryrefslogtreecommitdiff
path: root/spec/graphql/types/release_assets_type_spec.rb
blob: 58f0f7ee6972725c8c8241a94421cd9093148a5d (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'

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

  it 'has the expected fields' do
    expected_fields = %w[
      assets_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::ReleaseLinkType.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