Clarify that one year starts at the major release which does the deprecation
[gitmo/Moose.git] / t / 020_attributes / 016_attribute_traits_registered.t
index 91dc88a..48bca62 100644 (file)
@@ -3,12 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 23;
-use Test::Exception;
+use Test::More;
 use Test::Moose;
 
 
-
 {
     package My::Attribute::Trait;
     use Moose::Role;
@@ -115,3 +113,4 @@ ok(!$derived_bar_attr->does('Fictional'), "attr->does returns false for nonexist
 can_ok($quux, 'additional_method');
 is(eval { $quux->additional_method }, 42, '... got the right value for additional_method');
 
+done_testing;