Sha256: 5f875a01ed78f339c6f85aa6604e9716f7525e3cddd1b5b8adcf5caf2f79df9c

Contents?: true

Size: 636 Bytes

Versions: 5

Compression:

Stored size: 636 Bytes

Contents

Feature: gcli fork

  @ci-run
  Scenario: Available commands

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

  Scenario: List forks
    Given the GitHub API server:
    """
    get('/repos/wycats/thor/forks') { status 200 }
    """
    When I run `gcli 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 `gcli fork create wycats thor`
    Then the exit status should be 0

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
github_cli-0.6.2 features/fork.feature
github_cli-0.6.1 features/fork.feature
github_cli-0.6.0 features/fork.feature
github_cli-0.5.9 features/fork.feature
github_cli-0.5.8 features/fork.feature