From: Dave Rolsky Date: Sat, 17 Sep 2011 02:09:26 +0000 (-0500) Subject: UNIVERSAL methods are now part of the MOP X-Git-Tag: 2.0300~23 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=050ec051236609995c7b0b63c0c04a2073a17651;p=gitmo%2FMoose.git UNIVERSAL methods are now part of the MOP --- diff --git a/t/cmop/universal_methods.t b/t/cmop/universal_methods.t index 29d94df..6d00160 100644 --- a/t/cmop/universal_methods.t +++ b/t/cmop/universal_methods.t @@ -1,10 +1,6 @@ -#!perl - use strict; use warnings; -# UNIVERSAL methods - use Test::More; use Class::MOP; @@ -14,10 +10,8 @@ my @universal_methods = qw/isa can VERSION/; push @universal_methods, 'DOES' if $] >= 5.010; TODO: { - local $TODO = 'UNIVERSAL methods should be available'; - for my $method ( @universal_methods ) { - ok $meta_class->find_method_by_name($method), "has UNIVERSAL method $method"; + ok $meta_class->find_method_by_name($method), "has UNIVERSAL method $method"; } };