summaryrefslogtreecommitdiff
path: root/spec/graphql/types/group_invitation_type_spec.rb
blob: dab2d43fc90ca79eff129959aa4d84085beb4f20 (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::GroupInvitationType do
  specify { expect(described_class).to expose_permissions_using(Types::PermissionTypes::Group) }

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

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

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

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