]> git.vpit.fr Git - perl/modules/Sub-Prototype-Util.git/blobdiff - t/12-recall.t
Replace occurences of $^V by $]
[perl/modules/Sub-Prototype-Util.git] / t / 12-recall.t
index 269cd1df49be40ca8a0047f7bc7905e62664bd8b..d86235fae3b056a5b673f3f10c9a2fe2d88f944d 100644 (file)
@@ -3,10 +3,10 @@
 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/set_prototype/;
-use Sub::Prototype::Util qw/recall/;
+use Scalar::Util         qw<set_prototype>;
+use Sub::Prototype::Util qw<recall>;
 
 sub exception {
  my ($msg) = @_;
@@ -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 ],