Release commit for 1.62
[dbsrgits/SQL-Translator.git] / xt / eol.t
1 use warnings;
2 use strict;
3
4 use Test::More;
5 eval "use Test::EOL 1.1";
6 plan skip_all => 'Test::EOL 1.1 required' if $@;
7
8 Test::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;