Feature: Pwm In order to generate random passwords As a person needing random passwords I want to use the pwm command-line tool Scenario: Generating a password of the default length When I run `pwm` Then the password should be 16 characters long And the exit status should be 0 Scenario: Generating a password of a valid specific length When I run `pwm 8` Then the password should be 8 characters long And the exit status should be 0 Scenario: Generating a password of an invalid specific length When I run `pwm 4` Then the output should contain "length must be >= 8" And the exit status should be 1