]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
Tie the array after localizing it in t/{34,44}-*-magic.t
authorVincent Pit <vince@profvince.com>
Tue, 18 May 2010 19:48:12 +0000 (21:48 +0200)
committerVincent Pit <vince@profvince.com>
Tue, 18 May 2010 19:50:31 +0000 (21:50 +0200)
This fixes failures under perl 5.13 since Dave made "local @tied" untie
the array.

t/34-localize_elem-magic.t
t/44-localize_delete-magic.t

index 7a99222427567b767d7510b0d9804ef1ad17898e..361f77d90a3ddccd50d2e537efccc1d694535cef 100644 (file)
@@ -20,9 +20,10 @@ use Test::More tests => 8;
 
 our @a;
 
-tie @a, 'Scope::Upper::Test::TiedArray';
 {
- local @a = (5 .. 7);
+ local @a;
+ tie @a, 'Scope::Upper::Test::TiedArray';
+ @a = (5 .. 7);
  {
   localize_elem '@a', 4 => 12 => HERE;
   is_deeply \@a, [ 5 .. 7, undef, 12 ], 'localize_elem @incomplete_tied_array, $nonexistent, 12 => HERE [ok]';
index affe05b120cc71e85210e10fae51e4ee6ee5fc2f..bf0c43d6eb6cc3ffe40b9c103fd6dee8c600f8f3 100644 (file)
@@ -25,9 +25,10 @@ our $deleted;
 
 our @a;
 
-tie @a, 'Scope::Upper::Test::TiedArray';
 {
- local @a = (5 .. 7);
+ local @a;
+ tie @a, 'Scope::Upper::Test::TiedArray';
+ @a = (5 .. 7);
  local $a[4] = 9;
  is $deleted, undef, 'localize_delete @tied_array, $existent => HERE [not deleted]';
  {
@@ -40,7 +41,9 @@ tie @a, 'Scope::Upper::Test::TiedArray';
 }
 
 {
- local @a = (4 .. 6);
+ local @a;
+ tie @a, 'Scope::Upper::Test::TiedArray';
+ @a = (4 .. 6);
  local $a[4] = 7;
  {
   localize_delete '@main::a', -1 => HERE;
@@ -53,7 +56,9 @@ SKIP:
 {
  skip '$NEGATIVE_INDICES has no special meaning on 5.8.0 and older' => 2 if $] < 5.008_001;
  local $Scope::Upper::Test::TiedArray::NEGATIVE_INDICES = 1;
- local @a = (4 .. 6);
+ local @a;
+ tie @a, 'Scope::Upper::Test::TiedArray';
+ @a = (4 .. 6);
  local $a[4] = 7;
  {
   localize_delete '@main::a', -1 => HERE;