The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/local/bin/perl
BEGIN
{
use strict;
unless( ( $ENV{AUTHOR_TESTING} && $ENV{AUTHOR_TESTING} > 1 ) || $ENV{RELEASE_TESTING} )
{
plan(skip_all => 'These tests are for author or release candidate testing');
}
};
eval { require Test::Prereq; Test::Prereq->import() };
plan( skip_all => 'Test::Prereq not installed; skipping' ) if $@;
prereq_ok();