The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::Chunks;

plan tests => 1 * chunks;

run_is perl => 'strict';

__DATA__
=== Strict Test

--- perl strict
my $x = 5;
--- strict
use strict;
use warnings;
my $x = 5;