add test to ensure no tabs in perl files
[dbsrgits/DBIx-Class.git] / t / 06notabs.t
1 use warnings;
2 use strict;
3
4 use Test::More;
5 use Test::NoTabs;
6 use lib 't/lib';
7 use DBICTest;
8 unless ( DBICTest::AuthorCheck->is_author || $ENV{AUTOMATED_TESTING} || $ENV{RELEASE_TESTING} ) {
9   plan( skip_all => "Author tests not required for installation" );
10 }
11 all_perl_files_ok();
12
13 done_testing;