Sha256: 19acd123aedfb7fbf19fef0cc406eaa4f092fc053149ffac631ce86c784778e7
Contents?: true
Size: 712 Bytes
Versions: 4
Compression:
Stored size: 712 Bytes
Contents
Feature: gcli blob @ci-run Scenario: Available commands When I run `gcli blob` Then the exit status should be 0 And the output should contain "blob get" And the output should contain "blob create" Scenario: Get blob Given the GitHub API server: """ get('/repos/wycats/thor/git/blobs/59b23de9b91d') { status 200 } """ When I run `gcli blob get wycats thor 59b23de9b91d` Then the exit status should be 0 Scenario: Create blob Given the GitHub API server: """ post('/repos/wycats/thor/git/blobs') { status 200 } """ When I run `gcli blob create wycats thor --params=content:'Content' encoding:'utf-8'` Then the exit status should be 0
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
github_cli-0.5.9 | features/blob.feature |
github_cli-0.5.8 | features/blob.feature |
github_cli-0.5.7 | features/blob.feature |
github_cli-0.5.6 | features/blob.feature |