X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F004_nogetop.t;h=78da66dd0698203f960cc1308e3181947ec03cce;hb=0f8232b66e0f72e35099ce203962a4efc23838cf;hp=b0fa16dfd86bf96c0bfec3dd1fe7fe9d81b223c8;hpb=f969917f5cb650391a698751da4a219bec2fcdec;p=gitmo%2FMooseX-Getopt.git diff --git a/t/004_nogetop.t b/t/004_nogetop.t index b0fa16d..78da66d 100644 --- a/t/004_nogetop.t +++ b/t/004_nogetop.t @@ -11,14 +11,13 @@ BEGIN { } { - package App; use Moose; with 'MooseX::Getopt'; has 'data' => ( - metaclass => 'MooseX::Getopt::Meta::Attribute', + metaclass => 'Getopt', is => 'ro', isa => 'Str', default => 'file.dat', @@ -34,7 +33,7 @@ BEGIN { ); has 'horse' => ( - metaclass => 'MooseX::Getopt::Meta::Attribute', + metaclass => 'Getopt', is => 'ro', isa => 'Str', default => 'bray', @@ -66,14 +65,14 @@ BEGIN { ); has 'private_stuff' => ( - metaclass => 'MooseX::Getopt::Meta::NoGetopt', + metaclass => 'NoGetopt', is => 'ro', isa => 'Int', default => 713 ); has '_private_stuff_cmdline' => ( - metaclass => 'MooseX::Getopt::Meta::Attribute', + metaclass => 'Getopt', is => 'ro', isa => 'Int', default => 832,