Sha256: e2a90dd7e8842b37836209e7d05bb0186d524280741f7d204a5b75ec1ac474ac

Contents?: true

Size: 620 Bytes

Versions: 3

Compression:

Stored size: 620 Bytes

Contents

Feature: Command Completion

  Scenario: Suggest alternative

    When I run `ghc 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 `ghc 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 `ghc xen`
    Then the exit status should be 0
    And the output should not contain:
    """
    Did you mean this?
    """

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
github_cli-0.4.4 features/completion.feature
github_cli-0.4.3 features/completion.feature
github_cli-0.4.2 features/completion.feature