The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;

if ( not $ENV{TEST_AUTHOR} ) {
    require Test::More;
    Test::More->import;
    my $msg = 'Author test.  Set TEST_AUTHOR environment variable to a true value to run.';
    plan( skip_all => $msg );
    exit;
}

eval {
    require Test::Kwalitee;
    Test::Kwalitee->import( tests =>
        # skip testing pod errors as it's attempting to validate templates
        [ qw( -no_pod_errors ) ]
    );
};

if ($@) {
    require Test::More;
    Test::More->import;
    plan( skip_all => 'Test::Kwalitee not installed; skipping' );
}