1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
BEGIN {
unless ($ENV{AUTHOR_TESTING}) {
print qq{1..0 # SKIP these tests are for testing by the author\n};
exit
}
}
use strict;
use warnings;
# this test was generated with Dist::Zilla::Plugin::Test::EOL 0.19
use Test::More 0.88;
use Test::EOL;
my @files = (
'lib/Data/DPath.pm',
'lib/Data/DPath/Attrs.pm',
'lib/Data/DPath/Context.pm',
'lib/Data/DPath/Filters.pm',
'lib/Data/DPath/Path.pm',
'lib/Data/DPath/Point.pm',
'lib/Data/DPath/Step.pm',
't/00-compile.t',
't/00-load.t',
't/author-eol.t',
't/author-no-tabs.t',
't/author-pod-coverage.t',
't/author-pod-syntax.t',
't/basics_without_overload.t',
't/bigdata.dump',
't/bigdata2.dump',
't/cyclic_structures.t',
't/data_dpath.t',
't/data_dpath_path_unescape.t',
't/iterator.t',
't/matchr.t',
't/newline.t',
't/optimization.t',
't/parallel.t',
't/path.t',
't/references.t',
't/regressions.t',
't/smartmatch.t',
't/zeros.t'
);
eol_unix_ok($_, { trailing_whitespace => 0 }) foreach @files;
done_testing;
|