use warnings tester with fewer dependencies, issues
[gitmo/MooseX-Getopt.git] / t / 100_gld_default_bug.t
index a7dc478..0d6c410 100644 (file)
@@ -1,14 +1,10 @@
-#!/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::Warnings;
 
-use Test::Requires {
-    'Getopt::Long::Descriptive' => 0.01, # skip all if not installed
-};
+use Getopt::Long::Descriptive;
 
 use_ok('MooseX::Getopt');
 
@@ -19,7 +15,7 @@ use_ok('MooseX::Getopt');
     with 'MooseX::Getopt';
 
     has 'nproc' => (
-        metaclass   => 'Getopt',
+        traits      => ['Getopt'],
         is          => 'ro',
         isa         => 'Int',
         default     => sub { 1 },