use warnings tester with fewer dependencies, issues
[gitmo/MooseX-Getopt.git] / t / 100_gld_default_bug.t
index 29ae2a4..0d6c410 100644 (file)
@@ -1,17 +1,12 @@
-#!/usr/bin/perl
-
 use strict;
-use warnings;
+use warnings FATAL => 'all';
 
-use Test::More;
-use Test::Exception;
+use Test::More tests => 6;
+use Test::Warnings;
 
-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 Engine::Foo;
@@ -20,7 +15,7 @@ BEGIN {
     with 'MooseX::Getopt';
 
     has 'nproc' => (
-        metaclass   => 'Getopt',
+        traits      => ['Getopt'],
         is          => 'ro',
         isa         => 'Int',
         default     => sub { 1 },