Sha256: b51fd3458a059b9d00b105894fb4efb8582e103c60a4371923597e65fc9f54e8

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

Feature: Getting Help

  Scenario: General help
    When I run `shuhari help`
    Then the output should contain:
      """
      Tasks:
        shuhari empty        # Restart the Kata with empty mind and project
        shuhari help [TASK]  # Describe available tasks or one specific task
        shuhari new [NAME]   # Create a new Kata project
      """

  Scenario: Help about the "new" task
    When I run `shuhari help new`
    Then the output should contain:
      """
      Usage:
        shuhari new [NAME]

      Options:
        -r, [--rspec]          # Test using RSpec
                               # Default: true
        -m, [--minitest]       # Test using Minitest::Unit
        -s, [--minitest-spec]  # Test using Minitest::Spec
        -t, [--testunit]       # Test using Test::Unit
        -c, [--cucumber]       # Test using Cucumber
        -g, [--gemset]         # Create .rvmrc to use a gemset
                               # Default: true

      Create a new Kata project
      """

  Scenario: Help about the "empty" task
    When I run `shuhari help empty`
    Then the output should contain:
      """
      Usage:
        shuhari empty

      Restart the Kata with empty mind and project
      """

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shuhari-0.1.0 features/getting_help.feature