Sha256: f9cc19d05f87b8c3d7fdacf81b4511ce81c97aae0ec9b4370f145189dd3842dd

Contents?: true

Size: 688 Bytes

Versions: 7

Compression:

Stored size: 688 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 --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

7 entries across 7 versions & 1 rubygems

Version Path
rumble-0.8.0 features/cli.feature
rumble-0.7.0 features/cli.feature
rumble-0.6.0 features/cli.feature
rumble-0.5.3 features/cli.feature
rumble-0.5.2 features/cli.feature
rumble-0.5.1 features/cli.feature
rumble-0.5.0 features/cli.feature