From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!perl -wT
use strict;
if(not $ENV{RELEASE_TESTING}) {
plan(skip_all => 'Author tests not required for installation');
}
eval "use Test::Pod::Snippets";
if($@) {
plan skip_all => 'Test::Pod::Snippets required for testing POD code snippets';
} else {
my $tps = Test::Pod::Snippets->new;
my @modules = qw/ CGI::Info /;
$tps->runtest( module => $_, testgroup => 1 ) for @modules;
}