prefer trait over metaclass as much as possible
[gitmo/MooseX-Getopt.git] / t / 100_gld_default_bug.t
index 4a2b42a..85e10e3 100644 (file)
@@ -1,26 +1,23 @@
-#!/usr/bin/perl
-
 use strict;
 use warnings;
 
-use Test::More;
-use Test::Exception;
+use Test::More tests => 6;
+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 Test::Requires {
+    'Getopt::Long::Descriptive' => 0.01, # skip all if not installed
+};
+
+use_ok('MooseX::Getopt');
 
 {
     package Engine::Foo;
     use Moose;
-    
+
     with 'MooseX::Getopt';
-    
+
     has 'nproc' => (
-        metaclass   => 'Getopt',
+        traits      => ['Getopt'],
         is          => 'ro',
         isa         => 'Int',
         default     => sub { 1 },