Skip to content

Commit

Permalink
Merge pull request #211 from jkeenan/given-when-deprecated-20231004
Browse files Browse the repository at this point in the history
Don't test given/when once deprecated
  • Loading branch information
jkeenan committed Oct 5, 2023
2 parents 7e39bd3 + 87caba1 commit 72a8403
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion t/test16.t
Expand Up @@ -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;

0 comments on commit 72a8403

Please sign in to comment.