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
This commit is contained in:
Duncan Ferguson 2014-11-18 21:03:00 +00:00
parent 3cfb83c0d6
commit f169e544fd

View file

@ -1,4 +1,4 @@
#!perl -T
#!perl
use strict;
use warnings;
@ -12,5 +12,5 @@ plan skip_all => "Test::PerlTidy required for testing code" if $@;
run_tests(
perltidyrc => $Bin . '/perltidyrc',
exclude => [ '_build/', 'blib/' ]
exclude => [ '_build/', 'blib/', 'Makefile.PL', ]
);