Sha256: daf6a49ea93fc06cf0b685df5a7b7f811befc2e69744ebeed6be797635986027

Contents?: true

Size: 697 Bytes

Versions: 3

Compression:

Stored size: 697 Bytes

Contents

Feature: Command Line Processing
  As a newsletter author I want to be able to send a newsletter

  Scenario: Help can be printed
    When I run bin/rumble with "--help"
    Then Exit code is zero
    And Stdout contains "--help"

  Scenario: Version can be printed
    When I run bin/rumble with "--version"
    Then Exit code is zero

  Scenario: Sending test email
    Given I have a "a.liquid" file with content:
    """
    Hi, {{ first }}
    How are you?

    """
    When I run bin/rumble with "--test yegor256@gmail.com --host test --user test --password test --subject test --letter a.liquid --from me@example.com --dry"
    Then Stdout contains "Sent 1 email"
    And Exit code is zero

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rumble-0.3 features/cli.feature
rumble-0.2 features/cli.feature
rumble-0.1 features/cli.feature