make all warnings fatal in tests
[gitmo/MooseX-Getopt.git] / t / 009_gld_and_explicit_options.t
index dadceb2..2d46662 100644 (file)
@@ -1,14 +1,11 @@
-#!/usr/bin/perl
-
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
-use Test::More tests => 5;
-use Test::Exception;
+use Test::More tests => 6;
+use Test::Fatal;
+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');
 
@@ -34,9 +31,9 @@ use_ok('MooseX::Getopt');
 @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');