Sha256: 0dbceacda765e8be011c434d4d43380e792bb5fc978a9cc325c3050cfd3a35d2
Contents?: true
Size: 646 Bytes
Versions: 1
Compression:
Stored size: 646 Bytes
Contents
Feature: ghc tag Scenario: Available commands When I run `ghc tag` Then the exit status should be 0 And the output should contain "ghc tag create" And the output should contain "ghc tag get" Scenario: Get tag Given the GitHub API server: """ get('/repos/wycats/thor/git/tags/827efc6d5') { status 200 } """ When I run `ghc 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 `ghc tag create wycats thor` Then the exit status should be 0
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
github_cli-0.4.4 | features/tag.feature |