]> git.vpit.fr Git - perl/modules/Variable-Temp.git/commitdiff
Use set_temp() in tests instead of temp()
authorVincent Pit <vince@profvince.com>
Thu, 12 Mar 2015 15:09:18 +0000 (12:09 -0300)
committerVincent Pit <vince@profvince.com>
Thu, 12 Mar 2015 15:09:18 +0000 (12:09 -0300)
So that these tests pass on 5.12 and below.

t/10-lexical.t
t/11-global.t
t/12-destroy.t
t/13-magic.t

index 41bbf45c7c2d936946afd400e3d4a73e63fb3e4d..8fc07fab9bd97b824b4b6c6ccff7b8b2f6a3731b 100644 (file)
@@ -3,21 +3,21 @@
 use strict;
 use warnings;
 
-use Variable::Temp 'temp';
+use Variable::Temp 'set_temp';
 
 use Test::More tests => 7;
 
 my $x = 1;
 is $x, 1;
 {
temp $x = 2;
set_temp $x => 2;
  is $x, 2;
  $x = 3;
  is $x, 3;
  {
-  temp $x = 4;
+  set_temp $x => 4;
   is $x, 4;
-  temp $x = 5;
+  set_temp $x => 5;
   is $x, 5;
  }
  is $x, 3;
index 047529c1fdd3d9f0792a659788abf9165fe3d020..99a40f5980de738ce97297d343af9366bda13a6c 100644 (file)
@@ -3,21 +3,21 @@
 use strict;
 use warnings;
 
-use Variable::Temp 'temp';
+use Variable::Temp 'set_temp';
 
 use Test::More tests => 13;
 
 our $x = 1;
 is $x, 1;
 {
temp $x = 2;
set_temp $x => 2;
  is $x, 2;
  $x = 3;
  is $x, 3;
  {
-  temp $x = 4;
+  set_temp $x => 4;
   is $x, 4;
-  temp $x = 5;
+  set_temp $x => 5;
   is $x, 5;
  }
  is $x, 3;
@@ -28,12 +28,12 @@ is $x, 1;
  is $x, 3;
  {
   local $x = 7;
-  temp  $x = 8;
+  set_temp $x => 8;
   is $x, 8;
  }
  is $x, 3;
  {
-  temp  $x = 9;
+  set_temp $x => 9;
   local $x = 10;
   is $x, 10;
  }
index 48217413507919fcae3c54859f228bc5f4ba52e2..5fdc85339f961bf611c6fe354b30b24afaf5cbda 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Variable::Temp 'temp';
+use Variable::Temp 'set_temp';
 
 use Test::More tests => 16;
 
@@ -22,7 +22,7 @@ my $x_temp2_is_destroyed = 0;
  });
  is $x_is_destroyed, 0;
 
temp $x = VPIT::TestHelpers::Guard->new(sub {
set_temp $x => VPIT::TestHelpers::Guard->new(sub {
   is $x_is_destroyed,       0;
   is $x_temp2_is_destroyed, 1;
   ++$x_temp1_is_destroyed;
@@ -31,7 +31,7 @@ my $x_temp2_is_destroyed = 0;
  is $x_temp1_is_destroyed, 0;
  is $x_temp2_is_destroyed, 0;
 
temp $x = VPIT::TestHelpers::Guard->new(sub {
set_temp $x => VPIT::TestHelpers::Guard->new(sub {
   is $x_is_destroyed,       0;
   is $x_temp1_is_destroyed, 0;
   ++$x_temp2_is_destroyed;
index 883088b8ceec702bb81bbefd6c2bcef5f33bc41b..69d049ee5067c862bdd6217ba6c65c348292b7b5 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Variable::Temp 'temp';
+use Variable::Temp 'set_temp';
 
 use Test::More tests => 14;
 
@@ -28,7 +28,7 @@ my $wiz = Variable::Magic::wizard(
  is $freed,    0;
 
  {
-  temp $y = 2;
+  set_temp $y => 2;
   is $y,        2;
   is $replaced, 1;
   is $freed,    0;