summaryrefslogtreecommitdiff
path: root/spec/graphql/types/release_asset_link_input_type_spec.rb
blob: d97a91b609a11f9ea199413a0c43261623542e88 (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 Types::ReleaseAssetLinkInputType do
  specify { expect(described_class.graphql_name).to eq('ReleaseAssetLinkInput') }

  it 'has the correct arguments' do
    expect(described_class.arguments.keys).to match_array(%w[name url directAssetPath linkType])
  end

  it 'sets the type of link_type argument to ReleaseAssetLinkTypeEnum' do
    expect(described_class.arguments['linkType'].type).to eq(Types::ReleaseAssetLinkTypeEnum)
  end
end