given/when are removed in 5.41.3
Karen Etheridge [Fri, 16 Aug 2024 21:58:16 +0000 (14:58 -0700)]
Changes
t/given_when.t
t/when.t

diff --git a/Changes b/Changes
index d88924b..91b57f9 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for Try-Tiny
 
 {{$NEXT}}
+  - skip given, when tests on perls >= 5.41.3 which removed these constructs
 
 0.31      2021-11-23 20:29:12Z
   - plug Syntax::Keyword::Try and Feature::Compat::Try in the docs
index d12fa9c..dd4ae3f 100644 (file)
@@ -6,6 +6,7 @@ use Test::More;
 BEGIN {
   plan skip_all => 'Perl 5.010 is required' unless "$]" >= '5.010';
   plan skip_all => 'Tests skipped on perl 5.27.{7,8,9} when smartmatch behaviour changed' if "$]" >= '5.027007' and "$]" < '5.027010';
+  plan skip_all => 'given/when have been removed in perl 5.42' if "$]" >= '5.041003';
   plan tests => 2;
 }
 
index 1a45db1..1c28978 100644 (file)
--- a/t/when.t
+++ b/t/when.t
@@ -6,6 +6,7 @@ use Test::More;
 BEGIN {
   plan skip_all => 'Perl 5.010 is required' unless "$]" >= '5.010';
   plan skip_all => 'Tests skipped on perl 5.27.{7,8,9} when smartmatch behaviour changed' if "$]" >= '5.027007' and "$]" < '5.027010';
+  plan skip_all => 'given/when have been removed in perl 5.42' if "$]" >= '5.041003';
   plan tests => 5;
 }