Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
042bcdd5
Commit
042bcdd5
authored
Jan 04, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a failing spec to the POST /users API
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
ec4fe443
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
spec/requests/api/users_spec.rb
spec/requests/api/users_spec.rb
+8
-0
No files found.
spec/requests/api/users_spec.rb
View file @
042bcdd5
...
...
@@ -265,6 +265,14 @@ describe API::Users, api: true do
expect
(
response
).
to
have_http_status
(
409
)
expect
(
json_response
[
'message'
]).
to
eq
(
'Username has already been taken'
)
end
it
'creates user with new identity'
do
post
api
(
"/users"
,
admin
),
attributes_for
(
:user
,
provider:
'github'
,
extern_uid:
'67890'
)
expect
(
response
).
to
have_http_status
(
201
)
expect
(
json_response
[
'identities'
].
first
[
'extern_uid'
]).
to
eq
(
'67890'
)
expect
(
json_response
[
'identities'
].
first
[
'provider'
]).
to
eq
(
'github'
)
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment