Sha256: bf10a07fa366530d71bb01051d9ad573612d50e35a20cce545dead4000a8d10c

Contents?: true

Size: 1.08 KB

Versions: 13

Compression:

Stored size: 1.08 KB

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 `gcli <cmd>`
    Then the exit status should be 0
    And the output should contain:
    """
      gcli help <command>
    """
    Examples:
      | cmd  |
      |      |
      | help |

  Scenario Outline: Getting Subcommands

    When I run `gcli <command>`
    Then the exit status should be 0
    And the output should contain "gcli <command>"

    Examples:
      | command   |
      | auth      |
      | blob      |
      | commit    |
      | download  |
      | email     |
      | event     |
      | follower  |
      | fork      |
      | gist      |
      | hook      |
      | issue     |
      | key       |
      | label     |
      | member    |
      | milestone |
      | org       |
      | pull      |
      | ref       |
      | repo      |
      | tag       |
      | team      |
      | tree      |
      | user      |
      | watch     |

Version data entries

13 entries across 13 versions & 1 rubygems

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