]> git.vpit.fr Git - perl/modules/Sub-Nary.git/commitdiff
Replace uses of "$^V" by "$]"
authorVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 17:44:26 +0000 (14:44 -0300)
committerVincent Pit <vince@profvince.com>
Sat, 24 Aug 2013 17:44:26 +0000 (14:44 -0300)
t/23-branch.t

index e2638f76bc246b62d23623bc4177b6a54819ced9..ae0456481a2b47101b47793e18ca1b55c9909c64 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 21 + ($^V ge v5.10.0 ? 1 : 0);
+use Test::More tests => 21 + ("$]" >= 5.010 ? 1 : 0);
 
 use Sub::Nary;
 
@@ -86,7 +86,7 @@ my @tests = (
  [ sub { $x or (3, 4) }, { 1 => 0.5, 2 => 0.5 } ],
  [ sub { $x &&  (3, 4) }, { 1 => 0.5, 2 => 0.5 } ],
  [ sub { $x and (3, 4) }, { 1 => 0.5, 2 => 0.5 } ],
- (([ eval 'sub { $x // (3, 4) }', { 1 => 0.5, 2 => 0.5 } ]) x ($^V ge v5.10.0)),
+ (([ eval 'sub { $x // (3, 4) }', { 1 => 0.5, 2 => 0.5 } ]) x ("$]" >= 5.010)),
 );
 
 my $i = 1;