Sha256: 012ac0b55cdd2c51c3cd482c99a719ded63bb459b9903ff8a10030e3a4f0559e
Contents?: true
Size: 1.19 KB
Versions: 10
Compression:
Stored size: 1.19 KB
Contents
Feature: gcli search Scenario: Available commands When I run `gcli search` Then the exit status should be 0 And the output should contain "gcli search email" And the output should contain "gcli search issue" And the output should contain "gcli search repo" And the output should contain "gcli search user" Scenario: Search issues Given the GitHub API server: """ get('/legacy/issues/search/wycats/thor/open/shell') { status 200 } """ When I run `gcli search issue wycats thor shell --state=open` Then the exit status should be 0 Scenario: Search repositories Given the GitHub API server: """ get('/legacy/repos/search/shell') { status 200 } """ When I run `gcli search repo shell` Then the exit status should be 0 Scenario: Search users Given the GitHub API server: """ get('/legacy/user/search/wycats') { status 200 } """ When I run `gcli search user wycats` Then the exit status should be 0 Scenario: Search email Given the GitHub API server: """ get('/legacy/user/search/wycats') { status 200 } """ When I run `gcli search user wycats` Then the exit status should be 0
Version data entries
10 entries across 10 versions & 1 rubygems