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