1#!perl -wT
2# $Id$
3use strict;
4use warnings;
5
6BEGIN {
7    use Test::More;
8
9    plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR};
10
11    eval 'use Test::NoTabs 0.03';
12    plan skip_all => 'Test::NoTabs 0.03 not installed' if $@;
13};
14
15all_perl_files_ok('lib');
16