todo test for the role composition issue
[gitmo/Moose.git] / t / 020_attributes / 016_attribute_traits_registered.t
index 01b9536..48bca62 100644 (file)
@@ -3,13 +3,9 @@
 use strict;
 use warnings;
 
-use Test::More tests => 24;
-use Test::Exception;
+use Test::More;
 use Test::Moose;
 
-BEGIN {
-    use_ok('Moose');
-}
 
 {
     package My::Attribute::Trait;
@@ -117,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;