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

require 'spec_helper'

RSpec.describe GitlabSchema.types['CiVariable'] do
  specify do
    expect(described_class).to have_graphql_fields(
      :id, :key, :raw, :value, :variable_type
    ).at_least
  end
end