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

require 'spec_helper'

RSpec.describe GitlabSchema.types['CustomerRelationsContact'] do
  let(:fields) { %i[id organization first_name last_name phone email description created_at updated_at] }

  it { expect(described_class.graphql_name).to eq('CustomerRelationsContact') }
  it { expect(described_class).to have_graphql_fields(fields) }
  it { expect(described_class).to require_graphql_authorizations(:read_contact) }
end