Sha256: f6917bd53a872a3ad3e928edc8e18858e635f18e0fb1e877da5a624264f249a8

Contents?: true

Size: 825 Bytes

Versions: 1

Compression:

Stored size: 825 Bytes

Contents

Feature: Showing a board

  @show
  Scenario: Showing a board with ID
    Given a board exists
    When I run `troo show board 200`
    Then the output should contain:
      """
      (1) My Test Board
          No lists were found.
      """

  @show
  Scenario: Cannot show board; not found
    Given the Trello API is stubbed with "400_board_by_id"
    When I run `troo show board 400`
    Then the output should contain "Board cannot be found."

  @show
  Scenario: Showing the default board
    Given a default board exists
    When I run `troo show board`
    Then the output should contain:
      """
      (1) My Default Board *
          No lists were found.
      """

  @show
  Scenario: Cannot show; no default board
    When I run `troo show board`
    Then the output should contain "set a default board first"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
troo-0.0.9 features/show/board.feature