Skip find test rather than marking it TODO
[dbsrgits/DBIx-Class-InflateColumn-IP.git] / t / style-notabs.t
CommitLineData
3a889a03 1#!perl -T
2use strict;
3use warnings;
4
5use Test::More;
6
7if (not $ENV{TEST_AUTHOR}) {
8 plan skip_all => 'set TEST_AUTHOR to enable this test';
9}
10else {
11 eval 'use Test::NoTabs 0.03';
12 if ($@) {
13 plan skip_all => 'Test::NoTabs 0.03 not installed';
14 }
15 else {
16 plan tests => 1;
17 }
18}
19
20all_perl_files_ok('lib');