Build results of fe8475b (on master)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#!perl
|
||||
|
||||
BEGIN {
|
||||
unless ($ENV{AUTHOR_TESTING}) {
|
||||
require Test::More;
|
||||
Test::More::plan(skip_all => 'these tests are for testing by the author');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Test::More;
|
||||
use English qw(-no_match_vars);
|
||||
|
||||
eval "use Test::Perl::Critic";
|
||||
plan skip_all => 'Test::Perl::Critic required to criticise code' if $@;
|
||||
Test::Perl::Critic->import( -profile => "perlcritic.rc" ) if -e "perlcritic.rc";
|
||||
all_critic_ok();
|
||||
@@ -0,0 +1,15 @@
|
||||
#!perl
|
||||
|
||||
BEGIN {
|
||||
unless ($ENV{RELEASE_TESTING}) {
|
||||
require Test::More;
|
||||
Test::More::plan(skip_all => 'these tests are for release candidate testing');
|
||||
}
|
||||
}
|
||||
|
||||
# This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests.
|
||||
|
||||
use Test::Pod::Coverage 1.08;
|
||||
use Pod::Coverage::TrustPod;
|
||||
|
||||
all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' });
|
||||
@@ -0,0 +1,14 @@
|
||||
#!perl
|
||||
|
||||
BEGIN {
|
||||
unless ($ENV{RELEASE_TESTING}) {
|
||||
require Test::More;
|
||||
Test::More::plan(skip_all => 'these tests are for release candidate testing');
|
||||
}
|
||||
}
|
||||
|
||||
# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests.
|
||||
use Test::More;
|
||||
use Test::Pod 1.41;
|
||||
|
||||
all_pod_files_ok();
|
||||
Reference in New Issue
Block a user