Sha256: 158e94d24e6d7bde29c5634f38e09e8eb03fbf602c8f1226d13fba35f3b33241

Contents?: true

Size: 603 Bytes

Versions: 1

Compression:

Stored size: 603 Bytes

Contents

Feature: Setting a default card

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

  @default
  Scenario: Cannot set a default; not found
    Given the Trello API is stubbed with "fetch_card_by_id"
    When I run `troo default card 69`
    Then the output should contain "Card cannot be found."

  @default
  Scenario: Cannot set a default; no ID
    When I run `troo default card`
    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/card.feature