Convert all tests to done_testing.
[gitmo/Moose.git] / t / 050_metaclasses / 002_custom_attr_meta_as_role.t
index 96c0f38..55ee9c6 100644 (file)
@@ -3,11 +3,9 @@
 use strict;
 use warnings;
 
-use Test::More tests => 2;
+use Test::More;
 use Test::Exception;
 
-;
-
 lives_ok {
     package MooseX::Attribute::Test;
     use Moose::Role;
@@ -20,3 +18,5 @@ lives_ok {
     extends 'Moose::Meta::Attribute';
     with 'MooseX::Attribute::Test';
 } 'custom attribute metaclass extending role is okay';
+
+done_testing;