removed MooseX::Command::* stuff for now
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Test.pm
index 8297b99..4fe10c4 100644 (file)
@@ -7,18 +7,20 @@ with 'MooseX::Getopt';
 use MooseX::Types::Moose qw/Str Bool/;
 use namespace::autoclean;
 
+#extends qw(MooseX::App::Cmd);
+
 has _app => (
     reader   => 'app',
     init_arg => 'app',
     traits => [qw(NoGetopt)],
-    isa => 'Str',
+    isa => Str,
     is => 'ro',
 );
 
 has help => (
     traits => [qw(Getopt)],
     cmd_aliases => 'h',
-    isa => 'Bool',
+    isa => Bool,
     is => 'ro',
     documentation => qq{ display this help and exits },
 );
@@ -35,6 +37,6 @@ sub run {
 
 }
 
-no Moose;
+
 __PACKAGE__->meta->make_immutable;
 1;