Sha256: f2054ec4a2a2f6faa1fa9f33a94ae3510c2b2a9d30ae8acb08724549545ac89c

Contents?: true

Size: 670 Bytes

Versions: 7

Compression:

Stored size: 670 Bytes

Contents

Feature: gcli tag

  @ci-run
  Scenario: Available commands

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

  Scenario: Get tag
    Given the GitHub API server:
    """
    get('/repos/wycats/thor/git/tags/827efc6d5') { status 200 }
    """
    When I run `gcli tag get wycats thor 827efc6d5`
    Then the exit status should be 0

  Scenario: Create tag
    Given the GitHub API server:
    """
    post('/repos/wycats/thor/git/tags') { status 200 }
    """
    When I run `gcli tag create wycats thor --object=234f23rf`
    Then the exit status should be 0

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
github_cli-0.6.2 features/tag.feature
github_cli-0.6.1 features/tag.feature
github_cli-0.6.0 features/tag.feature
github_cli-0.5.9 features/tag.feature
github_cli-0.5.8 features/tag.feature
github_cli-0.5.7 features/tag.feature
github_cli-0.5.6 features/tag.feature