Sha256: 6b00e5adf5d393af2cfd8ba5c38dfc58f132d71639e00e0ba373a32902b25e11

Contents?: true

Size: 728 Bytes

Versions: 8

Compression:

Stored size: 728 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 --resume test@example.com"
    Then Stdout contains "Processed 1 email"
    And Exit code is zero

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rumble-0.4.1 features/cli.feature
rumble-0.4.0 features/cli.feature
rumble-0.3.7 features/cli.feature
rumble-0.3.6 features/cli.feature
rumble-0.3.5 features/cli.feature
rumble-0.3.4 features/cli.feature
rumble-0.3.3 features/cli.feature
rumble-0.3.2 features/cli.feature