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

require 'spec_helper'

RSpec.describe GitlabSchema.types['AgentConfiguration'] do
  let(:fields) { %i[agent_name] }

  it { expect(described_class.graphql_name).to eq('AgentConfiguration') }
  it { expect(described_class.description).to eq('Configuration details for an Agent') }
  it { expect(described_class).to have_graphql_fields(fields) }
end