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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 22:00:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-18 22:00:14 +0300
commit05f0ebba3a2c8ddf39e436f412dc2ab5bf1353b2 (patch)
tree11d0f2a6ec31c7793c184106cedc2ded3d9a2cc5 /spec/graphql/types/user_type_spec.rb
parentec73467c23693d0db63a797d10194da9e72a74af (diff)
Add latest changes from gitlab-org/gitlab@15-8-stable-eev15.8.0-rc42
Diffstat (limited to 'spec/graphql/types/user_type_spec.rb')
-rw-r--r--spec/graphql/types/user_type_spec.rb21
1 files changed, 20 insertions, 1 deletions
diff --git a/spec/graphql/types/user_type_spec.rb b/spec/graphql/types/user_type_spec.rb
index dcf25ff0667..45cb960cf20 100644
--- a/spec/graphql/types/user_type_spec.rb
+++ b/spec/graphql/types/user_type_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-RSpec.describe GitlabSchema.types['User'] do
+RSpec.describe GitlabSchema.types['User'], feature_category: :users do
specify { expect(described_class.graphql_name).to eq('User') }
specify do
@@ -20,7 +20,10 @@ RSpec.describe GitlabSchema.types['User'] do
name
username
email
+ emails
publicEmail
+ commitEmail
+ namespaceCommitEmails
avatarUrl
webUrl
webPath
@@ -226,4 +229,20 @@ RSpec.describe GitlabSchema.types['User'] do
is_expected.to have_graphql_type(Types::TimelogType.connection_type)
end
end
+
+ describe 'emails field' do
+ subject { described_class.fields['emails'] }
+
+ it 'returns user emails' do
+ is_expected.to have_graphql_type(Types::Users::EmailType.connection_type)
+ end
+ end
+
+ describe 'namespaceCommitEmails field' do
+ subject { described_class.fields['namespaceCommitEmails'] }
+
+ it 'returns user namespace_commit_emails' do
+ is_expected.to have_graphql_type(Types::Users::NamespaceCommitEmailType.connection_type)
+ end
+ end
end