Sha256: 3667fbfbff52344b0b2b37a8cbf03a56ce03c43a82dc2819425ac2500371043c

Contents?: true

Size: 923 Bytes

Versions: 6

Compression:

Stored size: 923 Bytes

Contents

Feature: Showing a list

  @show
  Scenario: Showing a list with ID
    Given a list exists
    When I run `troo show list 20040`
    Then the output should contain:
      """
      (1) My Test Board

          (1) My Test List

              No cards were found.
      """

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

  @show
  Scenario: Showing the default list
    Given a default list exists
    When I run `troo show list`
    Then the output should contain:
      """
      (1) My Test Board

          (1) My Default List *

              No cards were found.
      """

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
troo-0.0.15 features/show/list.feature
troo-0.0.14 features/show/list.feature
troo-0.0.13 features/show/list.feature
troo-0.0.12 features/show/list.feature
troo-0.0.11 features/show/list.feature
troo-0.0.10 features/show/list.feature