]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/35-stash.t
Fix t/35-stash.t failures starting with 5.27.5
[perl/modules/Variable-Magic.git] / t / 35-stash.t
index 9d094ea57d3e2cbbcc3096e89d97675160c2b19c..a9600bc44d3f6b1a73e6ec5282fb706fcb5166ec 100644 (file)
@@ -93,14 +93,11 @@ cast %Hlagh::, $wiz;
 
  my @calls = qw<eat shoot leave roam yawn roam>;
  my (@fetch, @store);
- if ("$]" < 5.011_002) {
-  @fetch = @calls;
-  @store = @calls;
- } elsif ("$]" < 5.021_004) {
+ if ("$]" >= 5.011_002 && "$]" < 5.021_004) {
   @fetch = @calls;
   @store = map { ($_) x 2 } @calls;
  } else {
-  @fetch = map { ($_) x 2 } @calls;
+  @fetch = @calls;
   @store = @calls;
  }
 
@@ -117,9 +114,12 @@ cast %Hlagh::, $wiz;
  eval q{ Hlagh->shoot() };
 
  is $@, '', 'stash: valid method call ran fine';
- is_deeply \%mg, {
-  fetch => [ qw<shoot> ],
- }, 'stash: valid method call';
+ my %expected = ( fetch => [ qw<shoot> ] );
+ # Typeglob reification may cause a store in 5.28+
+ if ("$]" >= 5.027 && %mg == 2) {
+  $expected{store} = $expected{fetch};
+ }
+ is_deeply \%mg, \%expected, 'stash: valid method call';
 }
 
 {
@@ -307,7 +307,7 @@ $_ => sub {
 CB
 } qw<fetch store exists delete>);
 
-my $uo_exp = "$]" < 5.011_002 ? 2 : 3;
+my $uo_exp = "$]" >= 5.011_002 && "$]" < 5.021_004 ? 3 : 2;
 
 $code .= ', data => sub { +{ guard => 0 } }';