X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F111_gld_pass_through.t;h=bf80680ac3ece1eeb7d88311944e3554e3e546a1;hb=195fb408a61ad34e0e41887b4f9f8dc384dd5da5;hp=1a028616ce8953517f6b0a97f76879fa31dca6e0;hpb=0611312e34f4d0e3668a2c9894df36dc945ffe74;p=gitmo%2FMooseX-Getopt.git diff --git a/t/111_gld_pass_through.t b/t/111_gld_pass_through.t index 1a02861..bf80680 100644 --- a/t/111_gld_pass_through.t +++ b/t/111_gld_pass_through.t @@ -1,9 +1,8 @@ -#!/usr/bin/perl - 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 @@ -18,7 +17,6 @@ use_ok('MooseX::Getopt::GLD'); with 'MooseX::Getopt::GLD' => { getopt_conf => [ 'pass_through' ] }; has 'foo' => ( - metaclass => 'Getopt', is => 'ro', isa => 'Int', ); @@ -31,7 +29,6 @@ use_ok('MooseX::Getopt::GLD'); with 'MooseX::Getopt::GLD' => { getopt_conf => [ 'pass_through' ] };; has 'bar' => ( - metaclass => 'Getopt', is => 'ro', isa => 'Int', );