X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F111_gld_pass_through.t;h=d179f1aa9a3f61fc38f4dbb46e406c77ad3555d1;hb=40a0a2081957d55e49da795a9255db61be85fe2d;hp=48e7f7a11c39bcdfe15f173c7c846ea967470a8a;hpb=da7b9880cfa75cdc3f3a4903e9ed7bfc86b534a3;p=gitmo%2FMooseX-Getopt.git diff --git a/t/111_gld_pass_through.t b/t/111_gld_pass_through.t index 48e7f7a..d179f1a 100644 --- a/t/111_gld_pass_through.t +++ b/t/111_gld_pass_through.t @@ -1,11 +1,10 @@ use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 6; +use Test::NoWarnings 1.04 ':early'; -use Test::Requires { - 'Getopt::Long::Descriptive' => 0.01, # skip all if not installed -}; +use Getopt::Long::Descriptive; use_ok('MooseX::Getopt::GLD'); @@ -16,7 +15,6 @@ use_ok('MooseX::Getopt::GLD'); with 'MooseX::Getopt::GLD' => { getopt_conf => [ 'pass_through' ] }; has 'foo' => ( - metaclass => 'Getopt', is => 'ro', isa => 'Int', ); @@ -29,7 +27,6 @@ use_ok('MooseX::Getopt::GLD'); with 'MooseX::Getopt::GLD' => { getopt_conf => [ 'pass_through' ] };; has 'bar' => ( - metaclass => 'Getopt', is => 'ro', isa => 'Int', );