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
|
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 = (
'examples/no_plan.t',
'examples/sub.t',
'examples/synopsis_1.t',
'examples/synopsis_2.t',
'examples/test_nowarnings.t',
'examples/test_warning_contents.t',
'examples/warning_like.t',
'examples/with_done_testing.t',
'examples/with_plan.t',
'lib/Test/Warnings.pm',
'lib/Test2/Warnings.pm',
't/00-report-prereqs.dd',
't/00-report-prereqs.t',
't/01-basic.t',
't/02-done_testing.t',
't/03-subtest.t',
't/04-no-tests.t',
't/05-no-end-block.t',
't/06-skip-all.t',
't/07-no_plan.t',
't/08-use-if.t',
't/09-warnings-contents.t',
't/10-no-done_testing.t',
't/11-double-use.t',
't/12-no-newline.t',
't/13-propagate-warnings.t',
't/14-propagate-subname.t',
't/15-propagate-default.t',
't/16-propagate-ignore.t',
't/17-propagate-subname-colons.t',
't/18-propagate-subname-package.t',
't/19-propagate-nonexistent-subname.t',
't/20-propagate-stub.t',
't/21-fail-on-warning.t',
't/22-warnings-bareword.t',
't/23-report-warnings.t',
't/24-only-report-warnings.t',
't/25-allowed_patterns.t',
't/26-test2-compat.t',
't/27-module-ordering.t',
't/28-redefine-done_testing.t',
't/lib/SilenceStderr.pm',
't/zzz-check-breaks.t',
'xt/author/00-compile.t',
'xt/author/distmeta.t',
'xt/author/eol.t',
'xt/author/examples_synopsis_1.t',
'xt/author/examples_synopsis_2.t',
'xt/author/examples_test_warning_contents.t',
'xt/author/kwalitee.t',
'xt/author/minimum-version.t',
'xt/author/mojibake.t',
'xt/author/no-tabs.t',
'xt/author/pod-coverage.t',
'xt/author/pod-no404s.t',
'xt/author/pod-spell.t',
'xt/author/pod-syntax.t',
'xt/author/portability.t',
'xt/release/changes_has_content.t',
'xt/release/cpan-changes.t'
);
eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
done_testing;
|