Fix typo, bricas++, add simple test for restarter arguments
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ScriptRole.pm
index bef547a..1cd745f 100644 (file)
@@ -25,6 +25,7 @@ has help => (
     isa => Bool,
     is => 'ro',
     documentation => q{Display this help and exit},
+    cmd_aliases => ['?', 'h'],
 );
 
 sub _getopt_spec_exception {}
@@ -73,7 +74,7 @@ Catalyst::ScriptRole - Common functionality for Catalyst scripts.
     use Moose;
     use namespace::autoclean;
 
-    with 'Catalyst::Script::Role';
+    with 'Catalyst::ScriptRole';
 
      sub _application_args { ... }