From 87caba10ea91d024a87add254413a83173951842 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Wed, 4 Oct 2023 14:16:16 -0400 Subject: [PATCH] Don't test given/when once deprecated 'given' and 'when' were deprecated during the 5.37 development cycle (committed Feb 25 2023). So the last perl production release for which we should test then was 5.36; skip thereafter. --- t/test16.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/test16.t b/t/test16.t index 60a64972..c5584189 100644 --- a/t/test16.t +++ b/t/test16.t @@ -4,6 +4,8 @@ use Test::More; use lib qw(t/lib); use NYTProfTest; -plan skip_all => "needs perl >= 5.10" unless $] >= 5.010; +#plan skip_all => "needs perl >= 5.10" unless $] >= 5.010; +plan skip_all => "needs perl >= 5.10 and <= 5.36" + unless ($] >= 5.010 and $] <= 5.036); run_test_group;