Feature: Howitzer CLI New Project Creation Scenario: Run with new command without argument and options When I run `howitzer new` Then the output should contain exactly: """ error: Please specify """ And the exit status should be 64 Scenario: Run with new command with argument and without options When I run `howitzer new test_automation` Then the output should contain exactly: """ error: Provide --cucumber, --rspec or --turnip option """ And the exit status should be 64 Scenario: Run with new command with argument and unknown option When I run `howitzer new test_automation --unknown` Then the output should contain: """ error: Unknown option --unknown """ And the exit status should be 64 Scenario Outline: Run with new command with help option When I run `howitzer new