Attribute-Params-Validate
view release on metacpan or search on metacpan
t/author-00-compile.t
t/author-eol.t
t/author-no-tabs.t
t/author-pod-spell.t
t/author-test-version.t
t/basic.t
t/lib/PVTests.pm
t/release-cpan-changes.t
t/release-pod-coverage.t
t/release-pod-linkcheck.t
t/release-pod-no404s.t
t/release-pod-syntax.t
t/release-portability.t
t/release-synopsis.t
t/release-tidyall.t
tidyall.ini
"Perl::Tidy" : "20140711",
"Pod::Coverage::TrustPod" : "0",
"Test::CPAN::Changes" : "0.19",
"Test::Code::TidyAll" : "0.24",
"Test::EOL" : "0",
"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::Spelling" : "0.12",
"Test::Synopsis" : "0",
"Test::Version" : "1"
}
},
"runtime" : {
"requires" : {
"Attribute::Handlers" : "0.79",
"Exporter" : "5.60",
"Params::Validate" : "1.21",
},
"name" : "@DROLSKY/push version bump",
"version" : "2.036"
},
{
"class" : "Dist::Zilla::Plugin::Test::Pod::LinkCheck",
"name" : "@DROLSKY/Test::Pod::LinkCheck",
"version" : "1.002"
},
{
"class" : "Dist::Zilla::Plugin::Test::Pod::No404s",
"name" : "@DROLSKY/Test::Pod::No404s",
"version" : "1.002"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":InstallModules",
"version" : "5.037"
},
{
"class" : "Dist::Zilla::Plugin::FinderCode",
"name" : ":IncModules",
remotes_must_exist: 1
Dist::Zilla::Role::Git::Repo:
repo_root: .
name: '@DROLSKY/push version bump'
version: '2.036'
-
class: Dist::Zilla::Plugin::Test::Pod::LinkCheck
name: '@DROLSKY/Test::Pod::LinkCheck'
version: '1.002'
-
class: Dist::Zilla::Plugin::Test::Pod::No404s
name: '@DROLSKY/Test::Pod::No404s'
version: '1.002'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':InstallModules'
version: '5.037'
-
class: Dist::Zilla::Plugin::FinderCode
name: ':IncModules'
version: '5.037'
-
requires "Perl::Tidy" => "20140711";
requires "Pod::Coverage::TrustPod" => "0";
requires "Test::CPAN::Changes" => "0.19";
requires "Test::Code::TidyAll" => "0.24";
requires "Test::EOL" => "0";
requires "Test::More" => "0.88";
requires "Test::NoTabs" => "0";
requires "Test::Pod" => "1.41";
requires "Test::Pod::Coverage" => "1.08";
requires "Test::Pod::LinkCheck" => "0";
requires "Test::Pod::No404s" => "0";
requires "Test::Spelling" => "0.12";
requires "Test::Synopsis" => "0";
requires "Test::Version" => "1";
};
t/00-report-prereqs.dd view on Meta::CPAN
'Perl::Tidy' => '20140711',
'Pod::Coverage::TrustPod' => '0',
'Test::CPAN::Changes' => '0.19',
'Test::Code::TidyAll' => '0.24',
'Test::EOL' => '0',
'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::Spelling' => '0.12',
'Test::Synopsis' => '0',
'Test::Version' => '1'
}
},
'runtime' => {
'requires' => {
'Attribute::Handlers' => '0.79',
'Exporter' => '5.60',
'Params::Validate' => '1.21',
t/author-eol.t view on Meta::CPAN
't/author-00-compile.t',
't/author-eol.t',
't/author-no-tabs.t',
't/author-pod-spell.t',
't/author-test-version.t',
't/basic.t',
't/lib/PVTests.pm',
't/release-cpan-changes.t',
't/release-pod-coverage.t',
't/release-pod-linkcheck.t',
't/release-pod-no404s.t',
't/release-pod-syntax.t',
't/release-portability.t',
't/release-synopsis.t',
't/release-tidyall.t'
);
eol_unix_ok($_, { trailing_whitespace => 1 }) foreach @files;
done_testing;
t/author-no-tabs.t view on Meta::CPAN
't/author-00-compile.t',
't/author-eol.t',
't/author-no-tabs.t',
't/author-pod-spell.t',
't/author-test-version.t',
't/basic.t',
't/lib/PVTests.pm',
't/release-cpan-changes.t',
't/release-pod-coverage.t',
't/release-pod-linkcheck.t',
't/release-pod-no404s.t',
't/release-pod-syntax.t',
't/release-portability.t',
't/release-synopsis.t',
't/release-tidyall.t'
);
notabs_ok($_) foreach @files;
done_testing;
t/release-pod-no404s.t view on Meta::CPAN
Test::More::plan(skip_all => 'these tests are for release candidate testing');
}
}
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 1.870 second using v1.01-cache-2.11-cpan-39bf76dae61 )