mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00

Remove taint mode so $PERL5LIB is used as expected Exclude Makefile.PL since it doesn't matter if it isn't tidy
16 lines
346 B
Perl
16 lines
346 B
Perl
#!perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
use FindBin qw($Bin);
|
|
|
|
eval "use Test::PerlTidy";
|
|
plan skip_all => "Test::PerlTidy required for testing code" if $@;
|
|
|
|
# Please see t/perltidyrc for the authors normal perltidy options
|
|
|
|
run_tests(
|
|
perltidyrc => $Bin . '/perltidyrc',
|
|
exclude => [ '_build/', 'blib/', 'Makefile.PL', ]
|
|
);
|