Sha256: 08090720397f38163512fe0dd8ab8e0f6a283b36d5bc626421fcae754053199f

Contents?: true

Size: 819 Bytes

Versions: 1

Compression:

Stored size: 819 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   |
      | download |
      | key      |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
github_cli-0.2.0 features/executable.feature