Sha256: 71526efef80cf5e287a71b28f11e2ae728f19eebb3f23ad60589c94f1488db45

Contents?: true

Size: 1.17 KB

Versions: 10

Compression:

Stored size: 1.17 KB

Contents

@settings
Feature: Global Settings

  As a developer who wants to set global settings for interaction with GitHub API
  When I use interface provided by GHC
  I have ability to create configuration file

  Scenario: Installs Default Configuration File
    When I run `ghc init` interactively
      And I type "token"
    Then the output should contain:
    """
    Writing new configuration file to /tmp/fakehome/.githubrc
    """
    And a file named "/tmp/fakehome/.githubrc" should exist
    And the file "/tmp/fakehome/.githubrc" should contain "oauth_token: token"

  Scenario: Configuration File Exists
    Given an empty file named "/tmp/fakehome/.githubrc"
    When I run `ghc init`
    Then the output should contain:
    """
    Not overwritting existing config file /tmp/fakehome/.githubrc, use --force to override.
    """

  Scenario: Force Config File Override
    Given an empty file named "/tmp/fakehome/.githubrc"
    When I run `ghc init --force` interactively
      And I type "token"
    Then the output should contain:
    """
    Please specify your GitHub Authentication Token (register on github.com to get it):
    """

  Scenario: Check for presence of yaml attribute

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
github_cli-0.4.4 features/settings.feature
github_cli-0.4.3 features/settings.feature
github_cli-0.4.2 features/settings.feature
github_cli-0.4.1 features/settings.feature
github_cli-0.4.0 features/settings.feature
github_cli-0.3.1 features/settings.feature
github_cli-0.3.0 features/settings.feature
github_cli-0.2.1 features/settings.feature
github_cli-0.2.0 features/settings.feature
github_cli-0.1.3 features/settings.feature