Sha256: 344ce93958666abbff57809aa6ab2b53c4551f0a29ba4e6dd1d9e68faaa3f6b4

Contents?: true

Size: 772 Bytes

Versions: 1

Compression:

Stored size: 772 Bytes

Contents

@executable
Feature: The GHC Executable

  As a developer who wants to interact with GitHub API v3
  When I use interface provided by GHC
  I have access to command line interface

  Scenario Outline: Getting Help for Commands
    When I run `ghc <command>`
    Then the exit status should be 0
    And the output should contain:
    """
      ghc help [TASK]
    """
    Examples:
      | command |
      |         |
      | help    |

  Scenario Outline: Getting Subcommands
    When I run `ghc <command>`
    Then the exit status should be 0
    And the output should contain "ghc <command>"

    Examples:
      | command |
      | repo    |
      | issue   |
      | blob    |
      | tree    |
      | ref     |
      | pull    |
      | fork    |
      | commit  |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
github_cli-0.1.3 features/executable.feature