X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Prototype-Util.git;a=blobdiff_plain;f=t%2F12-recall.t;h=d86235fae3b056a5b673f3f10c9a2fe2d88f944d;hp=504510deaae22389bbe141b0d30028d8125345f6;hb=993667a6ba54b9a581601fddbca89172eb9a7504;hpb=ea95d5eb42f17626bfca0f26e58a7d6c28e74d47 diff --git a/t/12-recall.t b/t/12-recall.t index 504510d..d86235f 100644 --- a/t/12-recall.t +++ b/t/12-recall.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 8 + 20 + (($^V ge v5.10.0) ? 4 : 0); +use Test::More tests => 8 + 20 + (("$]" >= 5.010) ? 4 : 0); use Scalar::Util qw; use Sub::Prototype::Util qw; @@ -56,7 +56,7 @@ my @tests = ( ); sub myit { push @{$_[0]->[2]}, 3; return 4 }; -if ($^V ge v5.10.0) { +if ("$]" >= 5.010) { set_prototype \&myit, '_'; push @tests, [ 'main::myit', '_ with argument', [ [ 1, 2, [ ] ], 5 ],