features/label.feature in github_cli-0.5.1 vs features/label.feature in github_cli-0.5.2
- old
+ new
@@ -58,11 +58,11 @@
Scenario: Add labels
Given the GitHub API server:
"""
post('/repos/wycats/thor/issues/1/labels') { status 200 }
"""
- When I run `gcli label add wycats thor 1 'bug' 'feature'`
+ When I run `gcli label add wycats thor 1 bug feature`
Then the exit status should be 0
Scenario: Remove label from an issue
Given the GitHub API server:
"""
@@ -90,10 +90,10 @@
Scenario: Replace labels
Given the GitHub API server:
"""
put('/repos/wycats/thor/issues/1/labels') { status 200 }
"""
- When I run `gcli label replace wycats thor 1 'bug' 'feature'`
+ When I run `gcli label replace wycats thor 1 bug feature`
Then the exit status should be 0
Scenario: Milestone labels
Given the GitHub API server:
"""