FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github_cli/features/user.feature at master · danieldeb/github_cli · GitHub
danieldeb
/
github_cli
Public
forked from
piotrmurach/github_cli
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
github_cli
/
features
/
user.feature
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (35 loc) · 995 Bytes
Breadcrumbs
github_cli
/
features
/
user.feature
Copy path
File metadata and controls
41 lines (35 loc) · 995 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Feature
:
gcli user
@ci-run
Scenario
:
Available commands
When
I run `gcli user`
Then
the exit status should be 0
And
the output should contain
"user get"
And
the output should contain
"user update"
Scenario
:
List all users
Given
the GitHub API server:
"""
get('/users') { status 200 }
"""
When
I run `gcli user ls`
Then
the exit status should be 0
Scenario
:
Get user
Given
the GitHub API server:
"""
get('/users/wycats') { status 200 }
"""
When
I run `gcli user get -u wycats`
Then
the exit status should be 0
Scenario
:
Get the authenticated user
Given
the GitHub API server:
"""
get('/user') { status 200 }
"""
When
I run `gcli user get`
Then
the exit status should be 0
Scenario
:
Update the authenticated user
Given
the GitHub API server:
"""
patch('/user') { status 200 }
"""
When
I run `gcli user update --name=peter-murach`
Then
the exit status should be 0
Back
|
FazBrowse Home
|
New Git URL