|
BEGIN {
unless ( $ENV {AUTHOR_TESTING}) {
print qq{1..0 # SKIP these tests are for testing by the author\n} ;
exit
}
}
my @files = (
'lib/Data/Pageset/Exponential.pm' ,
't/00-report-prereqs.dd' ,
't/00-report-prereqs.t' ,
't/Data-Page/constructor.t' ,
't/Data-Page/simple.t' ,
't/author-clean-namespaces.t' ,
't/author-critic.t' ,
't/author-eof.t' ,
't/author-eol.t' ,
't/author-minimum-version.t' ,
't/author-no-tabs.t' ,
't/author-pod-coverage.t' ,
't/author-pod-linkcheck.t' ,
't/author-pod-syntax.t' ,
't/author-portability.t' ,
't/basic.t' ,
't/etc/perlcritic.rc' ,
't/release-check-manifest.t' ,
't/release-fixme.t' ,
't/release-kwalitee.t' ,
't/release-trailing-space.t'
);
notabs_ok( $_ ) foreach @files ;
done_testing;
|