Sha256: 8f9927fc15d19bb2ab5dcd099a262fd6ed9674575404efc1a12d1c32f7b292f9

Contents?: true

Size: 630 Bytes

Versions: 2

Compression:

Stored size: 630 Bytes

Contents

Feature: ghc fork

  Scenario: Available commands

    When I run `ghc fork`
    Then the exit status should be 0
      And the output should contain "ghc fork create"
      And the output should contain "ghc fork list"

  Scenario: List forks
    Given the GitHub API server:
    """
    get('/repos/wycats/thor/forks') { status 200 }
    """
    When I run `ghc fork ls wycats thor`
    Then the exit status should be 0

  Scenario: Create fork
    Given the GitHub API server:
    """
    post('/repos/wycats/thor/forks') { status 200 }
    """
    When I run `ghc fork create wycats thor`
    Then the exit status should be 0

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
github_cli-0.4.4 features/fork.feature
github_cli-0.4.3 features/fork.feature