avoid relying on . being in @INC
[p5sagit/Devel-Declare.git] / t / no-bareword.t
index 7dd627f..702cbb5 100644 (file)
@@ -1,6 +1,6 @@
 use strict;
 use warnings;
-use Test::More;
+use Test::More 0.88;
 
 our $i;
 BEGIN { $i = 0 };
@@ -27,13 +27,7 @@ my @foo = (
     =>
     123
 );
-
-TODO: {
-    BEGIN {
-        local $TODO = 'fat commas not quoting barewords';
-        is($i, 0);
-    }
-}
+BEGIN { is($i, 0) }
 
 is_deeply(\@foo, ['method', '123']);