Clarify that one year starts at the major release which does the deprecation
[gitmo/Moose.git] / t / 020_attributes / 015_attribute_traits.t
index fc40435..a6fde4a 100644 (file)
@@ -3,12 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 12;
-use Test::Exception;
+use Test::More;
 use Test::Moose;
 
 
-
 {
     package My::Attribute::Trait;
     use Moose::Role;
@@ -64,5 +62,4 @@ ok(!$gorch_attr->does('My::Attribute::Trait'), '... gorch doesnt do the trait');
 ok(!$gorch_attr->has_applied_traits, '... no traits applied');
 is($gorch_attr->applied_traits, undef, '... no traits applied');
 
-
-
+done_testing;