Sha256: 06e45b85a98f20cb38c219e164a2b9a16e2c71045855aa3d39241c47bbc4a54b
Contents?: true
Size: 705 Bytes
Versions: 3
Compression:
Stored size: 705 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 --content=Content --encoding='utf-8'` Then the exit status should be 0
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
github_cli-0.6.2 | features/blob.feature |
github_cli-0.6.1 | features/blob.feature |
github_cli-0.6.0 | features/blob.feature |