Sha256: b517e2bded8cb9fd5322b33c48bba101e5ca19c50d73947a410bcce47d956125

Contents?: true

Size: 623 Bytes

Versions: 13

Compression:

Stored size: 623 Bytes

Contents

Feature: Command Completion

  Scenario: Suggest alternative

    When I run `gcli blah`
    Then the exit status should be 0
    And the output should contain:
    """
    Did you mean this?
            blob
    """

  Scenario: Suggest more than one

    When I run `gcli convent`
    Then the exit status should be 0
    And the output should contain:
    """
    Did you mean this?
            collab
            commit
            content
    """

  Scenario: Suggset nothing

    When I run `gcli xen`
    Then the exit status should be 0
    And the output should not contain:
    """
    Did you mean this?
    """

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
github_cli-0.6.2 features/completion.feature
github_cli-0.6.1 features/completion.feature
github_cli-0.6.0 features/completion.feature
github_cli-0.5.9 features/completion.feature
github_cli-0.5.8 features/completion.feature
github_cli-0.5.7 features/completion.feature
github_cli-0.5.6 features/completion.feature
github_cli-0.5.5 features/completion.feature
github_cli-0.5.4 features/completion.feature
github_cli-0.5.3 features/completion.feature
github_cli-0.5.2 features/completion.feature
github_cli-0.5.1 features/completion.feature
github_cli-0.5.0 features/completion.feature