X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=blobdiff_plain;f=t%2F009_gld_and_explicit_options.t;h=2d46662bcdb72e18771cd2e234017f22cd3c3ef0;hp=e81b300448721cb6ff0e0da829095b1014b98545;hb=aec092482d5b90b8279e4a5f92165868a78ddf32;hpb=0df9248ea02665c6ed613887a83ff6f0621fa66f diff --git a/t/009_gld_and_explicit_options.t b/t/009_gld_and_explicit_options.t index e81b300..2d46662 100644 --- a/t/009_gld_and_explicit_options.t +++ b/t/009_gld_and_explicit_options.t @@ -1,43 +1,39 @@ -#!/usr/bin/perl - use strict; -use warnings; +use warnings FATAL => 'all'; -use Test::More; -use Test::Exception; +use Test::More tests => 6; +use Test::Fatal; +use Test::NoWarnings 1.04 ':early'; -BEGIN { - eval "use Getopt::Long::Descriptive;"; - plan skip_all => "Getopt::Long::Descriptive required for this test" if $@; - plan tests => 5; - use_ok('MooseX::Getopt'); -} +use Getopt::Long::Descriptive; + +use_ok('MooseX::Getopt'); { package Testing::Foo; use Moose; - + with 'MooseX::Getopt'; - + has 'bar' => ( is => 'ro', - isa => 'Int', + isa => 'Int', required => 1, ); - + has 'baz' => ( is => 'ro', - isa => 'Int', - required => 1, - ); + isa => 'Int', + required => 1, + ); } -our @ARGV = qw(bar 10); +@ARGV = qw(--bar 10); my $foo; -lives_ok { +ok ! exception { $foo = Testing::Foo->new_with_options(baz => 100); -} '... this should work'; +}, '... this should work'; isa_ok($foo, 'Testing::Foo'); is($foo->bar, 10, '... got the right values');