Apparently this is a feature. nevermind :-/
Florian Ragwitz [Fri, 1 May 2009 10:33:09 +0000 (12:33 +0200)]
t/600_todo_tests/009_role_meta_method.t [deleted file]

diff --git a/t/600_todo_tests/009_role_meta_method.t b/t/600_todo_tests/009_role_meta_method.t
deleted file mode 100644 (file)
index fd6b6a5..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-use strict;
-use warnings;
-use Test::More tests => 3;
-
-{
-    package Foo;
-    use Moose::Role;
-}
-
-my $meta = Class::MOP::class_of('Foo');
-my $method = $meta->get_method('meta');
-ok($method, 'meta method exists');
-is($method->associated_metaclass->name, 'Foo', 'meta method belongs to the right class');
-TODO: {
-    local $TODO = "get_method_list doesn't include the meta method for roles yet";
-    ok((+grep { $_ eq 'meta' } $meta->get_method_list), 'get_method_list returns meta');
-}