fix typo in docs: . instead of ;
[gitmo/Moose.git] / t / 050_metaclasses / 017_use_base_of_moose.t
index 2fedbdc..6a8d254 100644 (file)
@@ -3,8 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 4;
-use Test::Exception;
+use Test::More;
 
 {
     package NoOpTrait;
@@ -35,3 +34,5 @@ is($child->attr, "ibute", "getter inherited properly");
 
 $child->attr("ition");
 is($child->attr, "ition", "setter inherited properly");
+
+done_testing;