Sha256: f20c8f8e3656d8fc951768b9aba442a0b6f7a37182f1c8b768977b1177465703

Contents?: true

Size: 599 Bytes

Versions: 1

Compression:

Stored size: 599 Bytes

Contents

Feature: Setting a default card

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

  @default
  Scenario: Cannot set a default; not found
    Given the Trello API is stubbed with "400_card_by_id"
    When I run `troo default card 400`
    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.9 features/default/card.feature