Sha256: 16fdbc42119fd9c997323cad4bd98ecb2c6dbe0c6b94961a076ec3d7aea3a21b

Contents?: true

Size: 696 Bytes

Versions: 1

Compression:

Stored size: 696 Bytes

Contents

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

  @pending @failing @add
  Scenario: Add a comment
    Given the Trello API is stubbed with "add_comment_success"
    When I run `troo add comment 69 ""`
    Then the output should contain ""

  @pending @failing @add
  Scenario: Add a comment, comment not provided
    Given the Trello API is stubbed with "add_comment_interactive_success"
    When I run `troo add comment` interactively
    And I type "My New Exciting Comment"
    Then the output should contain ""

  @pending @failing @add
  Scenario: Cannot add a comment as card not found
    When I run `troo add comment 69 ""`
    Then the output should contain ""

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
troo-0.0.8 features/add/comment.feature