TODO-ify MX::Method::Signatures test
Rafael Kitover [Wed, 28 Jul 2010 00:44:27 +0000 (20:44 -0400)]
t/02-mx-m-s.t

index 856e9ba..c79c947 100644 (file)
@@ -34,6 +34,10 @@ BEGIN {
 
 ok( (my $instance = MyClass->new), 'instance' );
 
-lives_and {
-    is $instance->foo(foo => "text", bar => 42), '4 42';
-} 'method called with coerced and uncoerced parameters';
+TODO: {
+    local $TODO = 'need rafl to help with implementation';
+
+    lives_and {
+        is $instance->foo(foo => "text", bar => 42), '4 42';
+    } 'method called with coerced and uncoerced parameters';
+}