summaryrefslogtreecommitdiff
path: root/spec/graphql/types/clusters/agent_type_spec.rb
blob: 4b4b601b230f9ad7cb5f099eb88e06e69326040b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['ClusterAgent'] do
  let(:fields) { %i[created_at created_by_user id name project updated_at tokens web_path connections] }

  it { expect(described_class.graphql_name).to eq('ClusterAgent') }

  it { expect(described_class).to require_graphql_authorizations(:admin_cluster) }

  it { expect(described_class).to have_graphql_fields(fields) }
end