Sha256: 5674f13c21c374ec995a17d03bc9fa50cd29aba1b54c6b410bbc2169f75d0871

Contents?: true

Size: 919 Bytes

Versions: 1

Compression:

Stored size: 919 Bytes

Contents

Feature: Showing a list

  @show
  Scenario: Showing a list with ID
    Given a list exists
    When I run `troo show list 200`
    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

1 entries across 1 versions & 1 rubygems

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