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

use strict;
use warnings;
use Test::More;

eval "use Test::Strict";

plan skip_all => 'Test::Strict not installed; skipping' if $@;

{
    no warnings 'once';
    $Test::Strict::TEST_WARNINGS = 1;
}

all_perl_files_ok('lib');