-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcommit.feature
More file actions
25 lines (21 loc) · 746 Bytes
/
Copy pathcommit.feature
File metadata and controls
25 lines (21 loc) · 746 Bytes
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
Feature: gcli commit
@ci-run
Scenario: Available commands
When I run `gcli commit`
Then the exit status should be 0
And the output should contain "commit get"
And the output should contain "commit create"
Scenario: Get commit
Given the GitHub API server:
"""
get('/repos/wycats/thor/git/commits/59b23de9b91d') { status 200 }
"""
When I run `gcli commit get wycats thor 59b23de9b91d`
Then the exit status should be 0
Scenario: Create commit
Given the GitHub API server:
"""
post('/repos/wycats/thor/git/commits') { status 200 }
"""
When I run `gcli commit create wycats thor --message='my commit' --tree=827efc --parents=['7d1b31e']`
Then the exit status should be 0