Sha256: fa8f99dcd1267d75958239c20440802330d2343361fb204e4de4c5fc8d858767

Contents?: true

Size: 599 Bytes

Versions: 1

Compression:

Stored size: 599 Bytes

Contents

Feature: Setting a default list

  @default
  Scenario: Set a list to default
    Given a list exists
    When I run `troo default list 200`
    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

1 entries across 1 versions & 1 rubygems

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