Sha256: 279edc902d16ab360c4ebc83693c83958341051cfa9488a257c1eda0a5aeb2bd

Contents?: true

Size: 700 Bytes

Versions: 3

Compression:

Stored size: 700 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    |

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
github_cli-0.1.2 features/executable.feature
github_cli-0.1.1 features/executable.feature
github_cli-0.1.0 features/executable.feature