AnyEvent-OWNet

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

lib/AnyEvent/OWNet/Response.pm
t/01-constants.t
t/01-message.t
t/01-simple.t
t/02-devices.t
t/Helpers.pm
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

META.json  view on Meta::CPAN

      "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",
            "Carp" : "0",
            "Sub::Name" : "0",

dist.ini  view on Meta::CPAN

[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

t/author-eol.t  view on Meta::CPAN

    'lib/AnyEvent/OWNet/Response.pm',
    't/01-constants.t',
    't/01-message.t',
    't/01-simple.t',
    't/02-devices.t',
    't/Helpers.pm',
    '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/OWNet/Response.pm',
    't/01-constants.t',
    't/01-message.t',
    't/01-simple.t',
    't/02-devices.t',
    't/Helpers.pm',
    '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.766 second using v1.01-cache-2.11-cpan-39bf76dae61 )