12345678910111213 use 5.010_001;use strict;use warnings;use Test::Compile; my @scripts = ( 'examples/transformations/01.pl', 'examples/transformations/02.pl',);my $test = Test::Compile->new;$test->all_files_ok;$test->pl_file_compiles($_) for @scripts;$test->done_testing;
use
5.010_001;
strict;
warnings;
Test::Compile;
my
@scripts
= (
'examples/transformations/01.pl'
,
'examples/transformations/02.pl'
);
$test
= Test::Compile->new;
->all_files_ok;
->pl_file_compiles(
$_
)
for
;
->done_testing;