ensure that gross code will not creep in
[p5sagit/Log-Contextual.git] / t / perltidy.t
CommitLineData
489f71b2 1#!perl
2
3use strict;
4use warnings;
5
6use Test::More;
7
8plan skip_all => 'Set TIDY_TESTING if you want to run this test'
9 unless $ENV{TIDY_TESTING};
10
11require Test::PerlTidy;
12
13Test::PerlTidy::run_tests(
14 path => '.',
15 perltidyrc => '.perltidyrc',
16 exclude => ['inc/'],
17);
18
19done_testing;