Sha256: 6ef4160dfef6b1ced6d15315f428c6f646a09d51832ee004b7b0f45d88c4de07
Contents?: true
Size: 825 Bytes
Versions: 6
Compression:
Stored size: 825 Bytes
Contents
Feature: gcli user Scenario: Available commands When I run `gcli user` Then the exit status should be 0 And the output should contain "gcli user get" And the output should contain "gcli user update" Scenario: Get user Given the GitHub API server: """ get('/users/wycats') { status 200 } """ When I run `gcli user get -u wycats` Then the exit status should be 0 Scenario: Get the authenticated user Given the GitHub API server: """ get('/user') { status 200 } """ When I run `gcli user get` Then the exit status should be 0 Scenario: Update the authenticated user Given the GitHub API server: """ patch('/user') { status 200 } """ When I run `gcli user update --params=name:peter-murach` Then the exit status should be 0
Version data entries
6 entries across 6 versions & 1 rubygems