Convert all tests to done_testing.
[gitmo/Moose.git] / t / 050_metaclasses / 002_custom_attr_meta_as_role.t
index 6c0fbfe..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;
@@ -16,7 +14,9 @@ lives_ok {
 lives_ok {
     package Moose::Meta::Attribute::Custom::Test;
     use Moose;
-    
+
     extends 'Moose::Meta::Attribute';
     with 'MooseX::Attribute::Test';
 } 'custom attribute metaclass extending role is okay';
+
+done_testing;