Sha256: 144b17cf3b8dd9a34478fc01769b36b2b5a3e61858f97ec9767b419ec002bd3c

Contents?: true

Size: 601 Bytes

Versions: 6

Compression:

Stored size: 601 Bytes

Contents

Feature: Setting a default list

  @default
  Scenario: Set a list to default
    Given a list exists
    When I run `troo default list 20040`
    Then the output should contain:
      """
      'My Test List' set as default.
      """

  @default
  Scenario: Cannot set a default; not found
    Given the Trello API is stubbed with "400_list_by_id"
    When I run `troo default list 400`
    Then the output should contain "List cannot be found."

  @default
  Scenario: Cannot set a default; no ID
    When I run `troo default list`
    Then the output should contain "was called with no arguments"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
troo-0.0.15 features/default/list.feature
troo-0.0.14 features/default/list.feature
troo-0.0.13 features/default/list.feature
troo-0.0.12 features/default/list.feature
troo-0.0.11 features/default/list.feature
troo-0.0.10 features/default/list.feature