X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_gld_default_bug.t;h=54312f29687bff380f2a90d3ca510060aefd672e;hb=28f95433340e9f4db1faa5a591a4855c25caeb9a;hp=3e3aa97629bc95b6242d35106f1e6544cfe4ea06;hpb=da7b9880cfa75cdc3f3a4903e9ed7bfc86b534a3;p=gitmo%2FMooseX-Getopt.git diff --git a/t/100_gld_default_bug.t b/t/100_gld_default_bug.t index 3e3aa97..54312f2 100644 --- a/t/100_gld_default_bug.t +++ b/t/100_gld_default_bug.t @@ -1,11 +1,10 @@ use strict; -use warnings; +use warnings FATAL => 'all'; -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'); @@ -16,7 +15,7 @@ use_ok('MooseX::Getopt'); with 'MooseX::Getopt'; has 'nproc' => ( - metaclass => 'Getopt', + traits => ['Getopt'], is => 'ro', isa => 'Int', default => sub { 1 },