Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contact_type_spec.rb « customer_relations « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 965cc4b60e6250b66a1944dc6fd93b8f808d00d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

require 'spec_helper'

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

  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_crm_contact) }
end