X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fperltidy.t;fp=t%2Fperltidy.t;h=007afeef40391e71618b29545c44ecf3dc1bcbcb;hb=489f71b2de7921cfe1f20ebd2745f15fddcaa747;hp=0000000000000000000000000000000000000000;hpb=f61bcdd6992d4ee1ebdfb4bedd07bacbc7aa27b1;p=p5sagit%2FLog-Contextual.git diff --git a/t/perltidy.t b/t/perltidy.t new file mode 100644 index 0000000..007afee --- /dev/null +++ b/t/perltidy.t @@ -0,0 +1,19 @@ +#!perl + +use strict; +use warnings; + +use Test::More; + +plan skip_all => 'Set TIDY_TESTING if you want to run this test' + unless $ENV{TIDY_TESTING}; + +require Test::PerlTidy; + +Test::PerlTidy::run_tests( + path => '.', + perltidyrc => '.perltidyrc', + exclude => ['inc/'], +); + +done_testing;