summaryrefslogtreecommitdiff
path: root/spec/graphql/types/project_invitation_type_spec.rb
blob: 148a763a5faa2b0ed5b664b843a407ee9bba6d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Types::ProjectInvitationType do
  specify { expect(described_class).to expose_permissions_using(Types::PermissionTypes::Project) }

  specify { expect(described_class.graphql_name).to eq('ProjectInvitation') }

  specify { expect(described_class).to require_graphql_authorizations(:read_project) }

  it 'has the expected fields' do
    expected_fields = %w[
      access_level created_by created_at updated_at expires_at project user
    ]

    expect(described_class).to include_graphql_fields(*expected_fields)
  end
end