summaryrefslogtreecommitdiff
path: root/spec/graphql/types/user_type_spec.rb
blob: 8134cc13eb49610d73baf262c6fbb361c1cd8329 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

describe GitlabSchema.types['User'] do
  it { expect(described_class.graphql_name).to eq('User') }

  it { expect(described_class).to require_graphql_authorizations(:read_user) }
end