Remove unused reserved words list
[dbsrgits/SQL-Translator.git] / xt / notabs.t
CommitLineData
aee4b66e 1use warnings;
2use strict;
3
4use Test::More;
5
6eval "use Test::NoTabs 1.1";
7plan skip_all => 'Test::NoTabs 1.1 required' if $@;
8
9Test::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;