summaryrefslogtreecommitdiff
path: root/spec/graphql/types/ci/variable_input_type_spec.rb
blob: a56b6287deec3b3ec6a2898343fdd2ba476bf656 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['CiVariableInput'] do
  include GraphqlHelpers

  it 'has the correct arguments' do
    expect(described_class.arguments.keys).to match_array(%w[key value])
  end
end