Sha256: 6983f3a45934151eace78ae3caaff9327ac357aeefa930248c9afc7d1134c642

Contents?: true

Size: 667 Bytes

Versions: 7

Compression:

Stored size: 667 Bytes

Contents

Feature: Help

  The `relish help` command displays all available commands
  along with a description of each.

  Scenario: View all available commands with the help command
    When I successfully run `relish help`
    Then the output should contain:
      """
      === Available Commands
      """

  Scenario: Specifying no command runs the help command
    When I successfully run `relish`
    Then the output should contain "=== Available Commands"

  Scenario: Specifying an unknown command gives an error message
    When I run `relish baloney`
    Then it should fail with:
      """
      Unknown command. Run 'relish help' for usage information.
      """

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
relish-0.7.1 features/help.feature
relish-0.7 features/help.feature
relish-0.6 features/help.feature
relish-0.5.3 features/help.feature
relish-0.5.2 features/help.feature
relish-0.5.1 features/help.feature
relish-0.5.0 features/help.feature