Sha256: 067ea5cdf9a1778ad607a24ea1dca0e8293329d922434608e53ba9a35a24d72c

Contents?: true

Size: 584 Bytes

Versions: 6

Compression:

Stored size: 584 Bytes

Contents

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

  @add
  Scenario: Add a comment
    Given the Trello API is stubbed with "200_create_comment"
    When I run `troo add comment 20020 "My Cucumber Comment"`
    Then the output should contain:
      """
      New comment created.
      """

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

Version data entries

6 entries across 6 versions & 1 rubygems

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