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
|
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/Dist/Zilla/Plugin/OurPkgVersion.pm',
't/00-compile.t',
't/00-report-prereqs.dd',
't/00-report-prereqs.t',
't/01-basic.t',
't/02-vstring.t',
't/03-trial.t',
't/04-underscore.t',
't/05-skip_main_module.t',
't/author-critic.t',
't/author-eol.t',
't/author-minimum-version.t',
't/author-mojibake.t',
't/author-pod-coverage.t',
't/author-pod-spell.t',
't/author-pod-syntax.t',
't/author-portability.t',
't/author-test-version.t',
't/release-cpan-changes.t',
't/release-dist-manifest.t',
't/release-distmeta.t',
't/release-kwalitee.t',
't/release-meta-json.t',
't/release-unused-vars.t'
);
eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
done_testing;
|