github.com/kat-co/gorkin@v0.0.0-20150628020237-0eebb48d172e/features/gorkin-command-line.feature (about)

     1  Feature: Gorkin help.
     2    AS A gorkin user
     3    I WOULD LIKE gorkin --help to provide information about its usage
     4    SO THAT I can lookup commands.
     5  
     6    Scenario: User runs "gorkin --help"
     7      When a user runs "gorkin --help"
     8      Then the output should be
     9      """
    10      gorkin v0.0.1:
    11        -help=false: Get usage on gorkin.
    12        -init=false: Initialize a Gherkin structure.
    13  
    14      """
    15  
    16      Scenario: A user runs "gorkin --init"
    17        When a user runs "gorkin --init"
    18        Then the output should be
    19        """
    20        Gherkin structure generated.
    21  
    22        """