X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_gld_default_bug.t;h=fb1b13f7c7bed9da1956a0662d003fcf077bf900;hb=14cb82caf70efcf0275fd296a0eba38bd04c7e74;hp=3237cd9040b634a8ff5f6dc9a098732c1b01ba36;hpb=aabf4179f74c8607d8c9de5a1da07a5f2cb48b3b;p=gitmo%2FMooseX-Getopt.git diff --git a/t/100_gld_default_bug.t b/t/100_gld_default_bug.t index 3237cd9..fb1b13f 100644 --- a/t/100_gld_default_bug.t +++ b/t/100_gld_default_bug.t @@ -1,13 +1,10 @@ -#!/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 -}; +use Getopt::Long::Descriptive; use_ok('MooseX::Getopt'); @@ -18,7 +15,7 @@ use_ok('MooseX::Getopt'); with 'MooseX::Getopt'; has 'nproc' => ( - metaclass => 'Getopt', + traits => ['Getopt'], is => 'ro', isa => 'Int', default => sub { 1 },