Sha256: 3ee1e1ed0d75a90917ac9e8fd968cc17b0b6459e3cfc3de03c1cbe6e1e59ec06

Contents?: true

Size: 577 Bytes

Versions: 6

Compression:

Stored size: 577 Bytes

Contents

Feature: Adding content to Trello
  Background:
    Given a board exists

  @add
  Scenario: Add a list
    Given the Trello API is stubbed with "200_create_list"
    When I run `troo add list 20010 "My Cucumber List"`
    Then the output should contain:
      """
      New list 'My Cucumber List' created.
      """

  @add
  Scenario: Cannot add a list as board not found
    Given the Trello API is stubbed with "400_create_list"
    When I run `troo add list 400 "My Cucumber List"`
    Then the output should contain:
      """
      List could not be created.
      """

Version data entries

6 entries across 6 versions & 1 rubygems

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