]> git.vpit.fr Git - perl/modules/Variable-Temp.git/commitdiff
Skip t/15-lvalue-sub.t before perl 5.16
authorVincent Pit <vince@profvince.com>
Thu, 12 Mar 2015 15:10:10 +0000 (12:10 -0300)
committerVincent Pit <vince@profvince.com>
Thu, 12 Mar 2015 15:12:26 +0000 (12:12 -0300)
With these old perls, you cannot pass a subroutine entry to the \$
prototype.

t/15-lvalue-sub.t

index baae5e4a895b8d16b6208af063def28b8c745a1f..f1ed334fb8fe3a2d841683a6e60085633e4c8102 100644 (file)
@@ -5,7 +5,15 @@ use warnings;
 
 use Variable::Temp 'temp';
 
-use Test::More tests => 10;
+use Test::More;
+
+BEGIN {
+ if ("$]" >= 5.016) {
+  plan tests => 10;
+ } else {
+  plan skip_all => 'perl 5.16 required to have \$ proto accept sub entries';
+ }
+}
 
 {
  package Variable::Temp::TestPkg;