Sha256: 803e2b227713450759a520008dd6eaa6b7fc6fa2fbc4f8f6845f31b45a59525c

Contents?: true

Size: 603 Bytes

Versions: 1

Compression:

Stored size: 603 Bytes

Contents

Feature: Setting a default list

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

  @default
  Scenario: Cannot set a default; not found
    Given the Trello API is stubbed with "fetch_list_by_id"
    When I run `troo default list 69`
    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

1 entries across 1 versions & 1 rubygems

Version Path
troo-0.0.8 features/default/list.feature