clusterssh/t/perltidy.t
Duncan Ferguson f169e544fd Fix perltidy test
Remove taint mode so $PERL5LIB is used as expected
Exclude Makefile.PL since it doesn't matter if it isn't tidy
2014-11-18 21:03:00 +00:00

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', ]
);