Acme-CPANAuthors-British
view release on metacpan or search on metacpan
t/90podtest.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More;
# Skip if doing a regular install
plan skip_all => "Author tests not required for installation"
unless ( $ENV{AUTOMATED_TESTING} );
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
t/91podcover.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More;
# Skip if doing a regular install
plan skip_all => "Author tests not required for installation"
unless ( $ENV{AUTOMATED_TESTING} );
eval "use Test::Pod::Coverage 0.08";
plan skip_all => "Test::Pod::Coverage 0.08 required for testing POD coverage" if $@;
all_pod_coverage_ok();
t/94metatest.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More;
# Skip if doing a regular install
plan skip_all => "Author tests not required for installation"
unless ( $ENV{AUTOMATED_TESTING} );
eval "use Test::CPAN::Meta";
plan skip_all => "Test::CPAN::Meta required for testing META.yml" if $@;
plan 'no_plan';
my $meta = meta_spec_ok(undef,undef,@_);
use Acme::CPANAuthors::British;
my $version = $Acme::CPANAuthors::British::VERSION;
is($meta->{version},$version,
'META.yml distribution version matches');
t/95changedate.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More;
use IO::File;
# Skip if doing a regular install
plan skip_all => "Author tests not required for installation"
unless ( $ENV{AUTOMATED_TESTING} );
my $fh = IO::File->new('Changes','r') or plan skip_all => "Cannot open Changes file";
plan 'no_plan';
use Acme::CPANAuthors::British;
my $version = $Acme::CPANAuthors::British::VERSION;
my $latest = 0;
t/96metatest.t view on Meta::CPAN
#!perl -T
use strict;
use warnings;
use Test::More;
# Skip if doing a regular install
plan skip_all => "Author tests not required for installation"
unless ( $ENV{AUTOMATED_TESTING} );
eval "use Test::CPAN::Meta::JSON";
plan skip_all => "Test::CPAN::Meta::JSON required for testing META.json files" if $@;
plan 'no_plan';
my $meta = meta_spec_ok(undef,undef,@_);
use Acme::CPANAuthors::British;
my $version = $Acme::CPANAuthors::British::VERSION;
is($meta->{version},$version,
'META.json distribution version matches');
( run in 0.409 second using v1.01-cache-2.11-cpan-0a6323c29d9 )