changelog
[gitmo/Class-MOP.git] / t / 032_universal_methods.t
index c0b5ba8..29d94df 100644 (file)
@@ -13,8 +13,6 @@ my $meta_class = Class::MOP::Class->create_anon_class;
 my @universal_methods = qw/isa can VERSION/;
 push @universal_methods, 'DOES' if $] >= 5.010;
 
-plan tests => scalar @universal_methods;
-
 TODO: {
     local $TODO = 'UNIVERSAL methods should be available';
 
@@ -22,3 +20,5 @@ TODO: {
        ok $meta_class->find_method_by_name($method), "has UNIVERSAL method $method";
     }
 };
+
+done_testing;