Release commit for 1.62
[dbsrgits/SQL-Translator.git] / xt / notabs.t
1 use warnings;
2 use strict;
3
4 use Test::More;
5
6 eval "use Test::NoTabs 1.1";
7 plan skip_all => 'Test::NoTabs 1.1 required' if $@;
8
9 Test::NoTabs::all_perl_files_ok(
10   qw|lib t xt script share/DiaUml|,
11 );
12
13 # FIXME - Test::NoTabs declares 'no_plan' which conflicts with done_testing
14 # https://github.com/schwern/test-more/issues/14
15 #done_testing;