Add boilderplate POD
[catagits/Catalyst-Engine-STOMP.git] / t / 01_notabs.t
CommitLineData
bd1954f9 1use strict;
2use warnings;
3
4use File::Spec;
5use Test::More;
6
7if ( !-e "inc/.author" ) {
8 plan skip_all => 'NoTabs test only for developers.';
9}
10else {
11 eval { require Test::NoTabs };
12 if ( $@ ) {
13 plan tests => 1;
14 fail( 'You must install Test::NoTabs to run 01_no_tabs.t' );
15 exit;
16 }
17}
18
19Test::NoTabs->import;
20all_perl_files_ok(qw/lib/);
edb41ed1 21