X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_gld_default_bug.t;h=85e10e3c59973f92edf00735762fc78a61e2ff5b;hb=195fb408a61ad34e0e41887b4f9f8dc384dd5da5;hp=a7dc478a5a9b098fe3421f96accc9e50cf21deb0;hpb=6a378fbdc3c4c5ca5b9f4de5e2ad60da912e9f97;p=gitmo%2FMooseX-Getopt.git diff --git a/t/100_gld_default_bug.t b/t/100_gld_default_bug.t index a7dc478..85e10e3 100644 --- a/t/100_gld_default_bug.t +++ b/t/100_gld_default_bug.t @@ -1,10 +1,8 @@ -#!/usr/bin/perl - use strict; use warnings; -use Test::More tests => 5; -use Test::Exception; +use Test::More tests => 6; +use Test::NoWarnings 1.04 ':early'; use Test::Requires { 'Getopt::Long::Descriptive' => 0.01, # skip all if not installed @@ -19,7 +17,7 @@ use_ok('MooseX::Getopt'); with 'MooseX::Getopt'; has 'nproc' => ( - metaclass => 'Getopt', + traits => ['Getopt'], is => 'ro', isa => 'Int', default => sub { 1 },