FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github_cli/features/authorization.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
/
authorization.feature
Copy path
More file actions
More file actions
Latest commit
History
History
History
53 lines (45 loc) · 1.51 KB
Breadcrumbs
github_cli
/
features
/
authorization.feature
Copy path
File metadata and controls
53 lines (45 loc) · 1.51 KB
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
42
43
44
45
46
47
48
49
50
51
52
Feature
:
gcli auth
@ci-run
Scenario
:
Available commands
When
I run `gcli auth`
Then
the exit status should be 0
And
the output should contain
"auth list"
And
the output should contain
"auth get"
And
the output should contain
"auth create"
And
the output should contain
"auth update"
And
the output should contain
"auth delete"
Scenario
:
List authorizations
Given
the Github API server:
"""
get('/authorizations') { status 200 }
"""
When
I run `gcli auth ls --login=piotr --password=secret`
Then
the exit status should be 0
Scenario
:
Get authorization
Given
the Github API server:
"""
get('/authorizations/1') { status 200 }
"""
When
I run `gcli auth get 1 --login=piotr --password=secret`
Then
the exit status should be 0
Scenario
:
Create authorization
Given
the Github API server:
"""
post('/authorizations') { status 200 }
"""
When
I run `gcli auth create --scopes=repo --login=piotr --password=secret`
Then
the exit status should be 0
Scenario
:
Update authorization
Given
the Github API server:
"""
patch('/authorizations/1') { status 200 }
"""
When
I run `gcli auth update 1 --scopes=repo --login=piotr --password=secret`
Then
the exit status should be 0
Scenario
:
Delete authorization
Given
the Github API server:
"""
delete('/authorizations/1') { status 200 }
"""
When
I run `gcli auth delete 1 --login=piotr --password=secret`
Then
the exit status should be 0
Back
|
FazBrowse Home
|
New Git URL