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