X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbase%2Flex.t;h=984cdff39bfed4570d6f522eb1d0fcfdc1358929;hb=f5992bc4a0a918eda67e6097aac8bd75a3b524e4;hp=4166c181942fd53b66ce212cf7e5361ee23f2459;hpb=972e7321890d17fb9c105d15681c3146dfb7c1cc;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/base/lex.t b/t/base/lex.t index 4166c18..984cdff 100755 --- a/t/base/lex.t +++ b/t/base/lex.t @@ -1,6 +1,6 @@ #!./perl -print "1..54\n"; +print "1..55\n"; $x = 'x'; @@ -260,3 +260,6 @@ my $test = 52; print ((exists $str{foo} ? "" : "not ")."ok $test\n"); ++$test; print ((exists $str{bar} ? "" : "not ")."ok $test\n"); ++$test; print ((exists $str{xyz::bar} ? "" : "not ")."ok $test\n"); ++$test; + +sub foo::::::bar { print "ok $test\n"; $test++ } +foo::::::bar;