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

use strict;
use warnings;

use Test::More;

BEGIN
{
    my $str = "use Test::Strict;";

    ## no critic (Eval)
    eval($str);
    ## use critic

    plan skip_all => "Skipping as Test::Strict isn't installed"
      if ($@);
}

all_perl_files_ok();