App-SuperviseMe

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

xt/release/cpan-changes.t
xt/release/dist-manifest.t
xt/release/distmeta.t
xt/release/kwalitee.t
xt/release/meta-json.t
xt/release/minimum-version.t
xt/release/mojibake.t
xt/release/no-tabs.t
xt/release/pod-coverage.t
xt/release/pod-linkcheck.t
xt/release/pod-no404s.t
xt/release/pod-syntax.t
xt/release/synopsis.t
xt/release/test-version.t

META.json  view on Meta::CPAN

            "class" : "Dist::Zilla::Plugin::ShareDir",
            "name" : "@Author::MELO/ShareDir",
            "version" : "4.300038"
         },
         {
            "class" : "Dist::Zilla::Plugin::MakeMaker",
            "name" : "@Author::MELO/MakeMaker",
            "version" : "4.300038"
         },
         {
            "class" : "Dist::Zilla::Plugin::Test::Pod::No404s",
            "name" : "@Author::MELO/Test::Pod::No404s",
            "version" : "1.001"
         },
         {
            "class" : "Dist::Zilla::Plugin::Test::Synopsis",
            "name" : "@Author::MELO/@TestingMania/Test::Synopsis",
            "version" : "2.000004"
         },
         {
            "class" : "Dist::Zilla::Plugin::Test::Version",
            "name" : "@Author::MELO/@TestingMania/Test::Version",

META.yml  view on Meta::CPAN

      version: 4.300038
    -
      class: Dist::Zilla::Plugin::ShareDir
      name: '@Author::MELO/ShareDir'
      version: 4.300038
    -
      class: Dist::Zilla::Plugin::MakeMaker
      name: '@Author::MELO/MakeMaker'
      version: 4.300038
    -
      class: Dist::Zilla::Plugin::Test::Pod::No404s
      name: '@Author::MELO/Test::Pod::No404s'
      version: 1.001
    -
      class: Dist::Zilla::Plugin::Test::Synopsis
      name: '@Author::MELO/@TestingMania/Test::Synopsis'
      version: 2.000004
    -
      class: Dist::Zilla::Plugin::Test::Version
      name: '@Author::MELO/@TestingMania/Test::Version'
      version: 0.002004
    -

xt/release/pod-no404s.t  view on Meta::CPAN

#!perl

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 2.063 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )