|
BEGIN {
unless ( $ENV {AUTHOR_TESTING}) {
print qq{1..0 # SKIP these tests are for testing by the author\n} ;
exit
}
}
my @files = (
'lib/Docker/Names/Random.pm' ,
't/00-report-prereqs.dd' ,
't/00-report-prereqs.t' ,
't/author-00-compile.t' ,
't/author-critic.t' ,
't/author-eol.t' ,
't/author-no-tabs.t' ,
't/author-pod-coverage.t' ,
't/author-pod-linkcheck.t' ,
't/author-pod-no404s.t' ,
't/author-pod-spell.t' ,
't/author-pod-syntax.t' ,
't/author-portability.t' ,
't/author-synopsis.t' ,
't/author-test-version.t' ,
't/load.t' ,
't/names_as_function.t' ,
't/names_as_object.t' ,
't/release-distmeta.t' ,
't/release-kwalitee.t' ,
't/release-trailing-space.t' ,
't/release-unused-vars.t'
);
eol_unix_ok( $_ , { trailing_whitespace => 1 }) foreach @files ;
done_testing;
|