X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F106_no_ignore_case.t;h=e9e1659535204283e1df92dbd4656ae32afb8f0b;hb=40a0a2081957d55e49da795a9255db61be85fe2d;hp=b8b6f1195d92977c5db1aed23ec6abdd7dcf77e9;hpb=5c6054f94f9682c2dffe1d46c09ca665afce6391;p=gitmo%2FMooseX-Getopt.git diff --git a/t/106_no_ignore_case.t b/t/106_no_ignore_case.t index b8b6f11..e9e1659 100644 --- a/t/106_no_ignore_case.t +++ b/t/106_no_ignore_case.t @@ -1,6 +1,8 @@ use strict; use warnings; -use Test::More; + +use Test::More tests => 22; +use Test::NoWarnings 1.04 ':early'; use Moose (); use Moose::Meta::Class; @@ -17,7 +19,7 @@ foreach my $role (qw/ $meta->add_attribute('BigD', traits => ['Getopt'], isa => 'Bool', cmd_aliases => ['D'], is => 'ro'); $meta->add_attribute('SmallD', traits => ['Getopt'], isa => 'Bool', - cmd_aliases => ['d'], is => 'ro'); + cmd_aliases => ['d'], is => 'ro'); $role->meta->apply($meta); { @@ -53,5 +55,3 @@ foreach my $role (qw/ } } -done_testing; -