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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
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/Path/Dispatcher.pm',
'lib/Path/Dispatcher/Cookbook.pod',
'lib/Path/Dispatcher/Dispatch.pm',
'lib/Path/Dispatcher/Match.pm',
'lib/Path/Dispatcher/Path.pm',
'lib/Path/Dispatcher/Role/Rules.pm',
'lib/Path/Dispatcher/Rule.pm',
'lib/Path/Dispatcher/Rule/Alternation.pm',
'lib/Path/Dispatcher/Rule/Always.pm',
'lib/Path/Dispatcher/Rule/Chain.pm',
'lib/Path/Dispatcher/Rule/CodeRef.pm',
'lib/Path/Dispatcher/Rule/Dispatch.pm',
'lib/Path/Dispatcher/Rule/Empty.pm',
'lib/Path/Dispatcher/Rule/Enum.pm',
'lib/Path/Dispatcher/Rule/Eq.pm',
'lib/Path/Dispatcher/Rule/Intersection.pm',
'lib/Path/Dispatcher/Rule/Metadata.pm',
'lib/Path/Dispatcher/Rule/Regex.pm',
'lib/Path/Dispatcher/Rule/Sequence.pm',
'lib/Path/Dispatcher/Rule/Tokens.pm',
'lib/Path/Dispatcher/Rule/Under.pm',
't/00-report-prereqs.dd',
't/00-report-prereqs.t',
't/000-compile.t',
't/001-api.t',
't/002-rule.t',
't/003-404.t',
't/004-run.t',
't/005-multi-rule.t',
't/006-abort.t',
't/007-coderef-matcher.t',
't/009-args.t',
't/010-return.t',
't/011-next-rule.t',
't/012-under.t',
't/013-tokens.t',
't/014-tokens-prefix.t',
't/015-regex-prefix.t',
't/017-intersection.t',
't/018-metadata.t',
't/019-intersection-metadata.t',
't/022-numbers-undef.t',
't/023-alternation.t',
't/024-sequence.t',
't/025-sequence-custom-rule.t',
't/026-named-captures.t',
't/027-custom-named-captures.t',
't/030-exceptions.t',
't/031-structured-match.t',
't/032-multiple-delimiter.t',
't/033-chain.t',
't/100-match-object.t',
't/200-payload.t',
't/901-return-values.t',
't/902-coderef.t',
'xt/author/00-compile.t',
'xt/author/changes_has_content.t',
'xt/author/eol.t',
'xt/author/kwalitee.t',
'xt/author/minimum-version.t',
'xt/author/mojibake.t',
'xt/author/no-tabs.t',
'xt/author/pod-no404s.t',
'xt/author/pod-syntax.t',
'xt/author/portability.t',
'xt/release/changes_has_content.t',
'xt/release/cpan-changes.t',
'xt/release/distmeta.t'
);
eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
done_testing;
|