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