Sha256: 37d9c54c7703a858aebaf37d4fbc7175a406de689b48dda43c7ed12e2225287d
Contents?: true
Size: 636 Bytes
Versions: 8
Compression:
Stored size: 636 Bytes
Contents
Feature: gcli fork Scenario: Available commands When I run `gcli fork` Then the exit status should be 0 And the output should contain "gcli fork create" And the output should contain "gcli fork list" Scenario: List forks Given the GitHub API server: """ get('/repos/wycats/thor/forks') { status 200 } """ When I run `gcli fork ls wycats thor` Then the exit status should be 0 Scenario: Create fork Given the GitHub API server: """ post('/repos/wycats/thor/forks') { status 200 } """ When I run `gcli fork create wycats thor` Then the exit status should be 0
Version data entries
8 entries across 8 versions & 1 rubygems