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