un-todo foreign tests we pass :-)
Lukas Mai [Thu, 1 Nov 2012 13:02:50 +0000 (14:02 +0100)]
t/foreign/signatures/proto.t

index ded1cc4..0f68e13 100644 (file)
@@ -30,14 +30,14 @@ BEGIN { is(@warnings, 0, 'no warnings with correct :proto declarations') }
 fun invalid_proto ($x) : (invalid) { $x }
 
 BEGIN {
-    TODO: {
-        local $TODO = ':proto checks not yet implemented';
+    #TODO: {
+    #    local $TODO = ':proto checks not yet implemented';
         is(@warnings, 1, 'warning with illegal :proto');
         like(
             $warnings[0],
             qr/Illegal character in prototype for fun invalid_proto : invalid at /,
             'warning looks sane',
         );
-    }
+    #}
 }