use ppport.h for previous perls
[p5sagit/Devel-Declare.git] / t / no-bareword.t
index 9032aaf..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,12 +27,8 @@ my @foo = (
     =>
     123
 );
+BEGIN { is($i, 0) }
 
-TODO: {
-    BEGIN {
-        local $TODO = 'fat commas not quoting barewords';
-        is($i, 0);
-    }
-}
+is_deeply(\@foo, ['method', '123']);
 
 done_testing;