AnyEvent-MockTCPServer
view release on metacpan or search on metacpan
lib/AnyEvent/MockTCPServer.pm
t/01-simple.t
t/02-unexpected.t
t/03-two.t
t/04-timeout.t
t/05-error.t
t/author-critic.t
t/author-eol.t
t/author-no-tabs.t
t/author-pod-coverage.t
t/author-pod-no404s.t
t/author-pod-syntax.t
t/author-synopsis.t
t/release-common_spelling.t
t/release-kwalitee.t
t/release-pod-linkcheck.t
weaver.ini
"develop" : {
"requires" : {
"Pod::Coverage::TrustPod" : "0",
"Test::EOL" : "0",
"Test::Kwalitee" : "1.21",
"Test::More" : "0.88",
"Test::NoTabs" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08",
"Test::Pod::LinkCheck" : "0",
"Test::Pod::No404s" : "0",
"Test::Synopsis" : "0"
}
},
"runtime" : {
"requires" : {
"AnyEvent" : "0",
"AnyEvent::Handle" : "0",
"AnyEvent::Socket" : "0",
"Sub::Name" : "0",
"Test::More" : "0",
[NextRelease]
[AutoVersion]
[PkgVersion]
[PodWeaver]
[Test::Perl::Critic]
[Test::EOL]
[Test::Kwalitee]
[Test::NoTabs]
[PodCoverageTests]
[Test::Pod::LinkCheck]
[Test::Pod::No404s]
[PodSyntaxTests]
[SpellingCommonMistakesTests]
[Test::Synopsis]
[AutoPrereqs]
[MetaJSON]
; authordep Test::NoTabs
; authordep Test::Perl::Critic
; authordep Pod::Coverage::TrustPod
; authordep Test::EOL
t/author-eol.t view on Meta::CPAN
'lib/AnyEvent/MockTCPServer.pm',
't/01-simple.t',
't/02-unexpected.t',
't/03-two.t',
't/04-timeout.t',
't/05-error.t',
't/author-critic.t',
't/author-eol.t',
't/author-no-tabs.t',
't/author-pod-coverage.t',
't/author-pod-no404s.t',
't/author-pod-syntax.t',
't/author-synopsis.t',
't/release-common_spelling.t',
't/release-kwalitee.t',
't/release-pod-linkcheck.t'
);
eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
done_testing;
t/author-no-tabs.t view on Meta::CPAN
'lib/AnyEvent/MockTCPServer.pm',
't/01-simple.t',
't/02-unexpected.t',
't/03-two.t',
't/04-timeout.t',
't/05-error.t',
't/author-critic.t',
't/author-eol.t',
't/author-no-tabs.t',
't/author-pod-coverage.t',
't/author-pod-no404s.t',
't/author-pod-syntax.t',
't/author-synopsis.t',
't/release-common_spelling.t',
't/release-kwalitee.t',
't/release-pod-linkcheck.t'
);
notabs_ok($_) foreach @files;
done_testing;
t/author-pod-no404s.t view on Meta::CPAN
exit
}
}
use strict;
use warnings;
use Test::More;
foreach my $env_skip ( qw(
SKIP_POD_NO404S
AUTOMATED_TESTING
) ){
plan skip_all => "\$ENV{$env_skip} is set, skipping"
if $ENV{$env_skip};
}
eval "use Test::Pod::No404s";
if ( $@ ) {
plan skip_all => 'Test::Pod::No404s required for testing POD';
}
else {
all_pod_files_ok();
}
( run in 0.867 second using v1.01-cache-2.11-cpan-39bf76dae61 )