There are two todo tests in given.t that have # in their desc string, which is confusing 'make test'. Here's a diff to remove the #s, so they no longer show up as failing.

-garrett
Index: t/base/given.t
===================================================================
--- t/base/given.t      (revision 562)
+++ t/base/given.t      (working copy)
@@ -85,8 +85,8 @@
                $panic = 1;
        }';
 
-       todo_ok($b_one, "inteleraved #1");
-       todo_ok($b_two, "inteleraved #2 is the last one");
+       todo_ok($b_one, "inteleraved 1");
+       todo_ok($b_two, "inteleraved 2 is the last one");
        ok(!$b_three, "inteleraved #3 not executed");
        ok(!$panic, "never ever execute something after a default {}");
 };

Reply via email to