Sha256: d93638eb6011d921dc0fb8d96351530b8d8f6b12234241cb87e4df4cb3f479e8

Contents?: true

Size: 601 Bytes

Versions: 6

Compression:

Stored size: 601 Bytes

Contents

Feature: Setting a default card

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

6 entries across 6 versions & 1 rubygems

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