X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F20-good.t;h=e04ee9d34c04c0a253e2d1e0e3b35f938e437249;hp=b3604314816c7afaea73228b56053922d7356e56;hb=b11e5a01561dde92d778ab423666bc76ac358c6a;hpb=f136bf535929d8e3d552f0e1c28e44bcc7b5c006 diff --git a/t/20-good.t b/t/20-good.t index b360431..e04ee9d 100644 --- a/t/20-good.t +++ b/t/20-good.t @@ -155,7 +155,7 @@ $obj = $pkg -> ($cb) (); #### $obj = $pkg->$cb( $obj ); #### -$obj = $pkg->$cb(qw/foo bar baz/); +$obj = $pkg->$cb(qw); #### $obj = $pkg->$meth; #### @@ -192,9 +192,9 @@ meh $x, 1, 2; meh $y; #### meh $y, 1, 2; -#### $] < 5.010 # use feature 'state'; state $z +#### "$]" < 5.010 # use feature 'state'; state $z meh $z; -#### $] < 5.010 # use feature 'state'; state $z +#### "$]" < 5.010 # use feature 'state'; state $z meh $z, 1, 2; #### print; @@ -208,9 +208,9 @@ print $x "oh hai\n"; print $y; #### print $y "dongs\n"; -#### $] < 5.010 # use feature 'state'; state $z +#### "$]" < 5.010 # use feature 'state'; state $z print $z; -#### $] < 5.010 # use feature 'state'; state $z +#### "$]" < 5.010 # use feature 'state'; state $z print $z "hlagh\n"; #### print STDOUT "bananananananana\n";