Sha256: cff26ea73e5174a511fda59144d38fc214d88b61ddae064332546e41b3f374ff

Contents?: true

Size: 613 Bytes

Versions: 1

Compression:

Stored size: 613 Bytes

Contents

Feature: Setting a default board

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

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

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