Sha256: 1e02cc97cc2bb8d20f3273dde1ec30a020bd50e763c978b8b61ce8a2364f5e12
Contents?: true
Size: 680 Bytes
Versions: 2
Compression:
Stored size: 680 Bytes
Contents
Feature: gcli tag @ci-run Scenario: Available commands When I run `gcli tag` Then the exit status should be 0 And the output should contain "gcli tag create" And the output should contain "gcli tag get" Scenario: Get tag Given the GitHub API server: """ get('/repos/wycats/thor/git/tags/827efc6d5') { status 200 } """ When I run `gcli tag get wycats thor 827efc6d5` Then the exit status should be 0 Scenario: Create tag Given the GitHub API server: """ post('/repos/wycats/thor/git/tags') { status 200 } """ When I run `gcli tag create wycats thor --object=234f23rf` Then the exit status should be 0
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
github_cli-0.5.5 | features/tag.feature |
github_cli-0.5.4 | features/tag.feature |