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

Version Path
github_cli-0.5.9 features/search.feature
github_cli-0.5.8 features/search.feature
github_cli-0.5.7 features/search.feature
github_cli-0.5.6 features/search.feature
github_cli-0.5.5 features/search.feature
github_cli-0.5.4 features/search.feature
github_cli-0.5.3 features/search.feature
github_cli-0.5.2 features/search.feature
github_cli-0.5.1 features/search.feature
github_cli-0.5.0 features/search.feature