Sha256: 917da3b87eb25ee07569534849f00268933f8ffb0f0608a7c5e44ad0bc76f99d

Contents?: true

Size: 563 Bytes

Versions: 13

Compression:

Stored size: 563 Bytes

Contents

Feature: Configuration file
  As a user
  I want to be able to specify a configuration file
  In order to tell twitchus where to load and store the data.

  Scenario: run the binary without any argumetns
    When I run `twitchus`
    Then the exit status should be 1

  Scenario: pass non-existent config file
    When I run `twitchus -c foo.yml`
    Then the exit status should be 1

  Scenario: pass an existing file
    Given a file named "config.yml" with:
    """
    foo
    """
    When I run `twitchus -c config.yml`
    Then the exit status should be 0

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
twitchus-0.1.8 features/config.feature
twitchus-0.1.7 features/config.feature
twitchus-0.1.6 features/config.feature
twitchus-0.1.5 features/config.feature
twitchus-0.1.4 features/config.feature
twitchus-0.1.3 features/config.feature
twitchus-0.1.2 features/config.feature
twitchus-0.1.1 features/config.feature
twitchus-0.1.0 features/config.feature
twitchus-0.0.4 features/config.feature
twitchus-0.0.3 features/config.feature
twitchus-0.0.2 features/config.feature
twitchus-0.0.1 features/config.feature