File: eol.t

package info (click to toggle)
libsql-translator-perl 0.11011-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 15,380 kB
  • sloc: perl: 251,748; sql: 3,805; xml: 233; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use warnings;
use strict;

use Test::More;
eval "use Test::EOL 1.1";
plan skip_all => 'Test::EOL 1.1 required' if $@;

Test::EOL::all_perl_files_ok({ trailing_whitespace => 1},
  qw|lib t xt script share/DiaUml|,
);

# FIXME - Test::EOL declares 'no_plan' which conflicts with done_testing
# https://github.com/schwern/test-more/issues/14
#done_testing;