Acme-CPANAuthors-British
view release on metacpan or search on metacpan
"Acme::CPANAuthors": "0.04"
}
},
"test" : {
"requires": {
"Test::More": "0.70",
"IO::File": "0"
},
"recommends": {
"Test::CPAN::Meta": "0",
"Test::CPAN::Meta::JSON": "0",
"Test::Pod": "1.00",
"Test::Pod::Coverage": "0.08"
}
}
},
"provides": {
"Acme::CPANAuthors::British": {
"file": "lib/Acme/CPANAuthors/British.pm",
"version": "1.05"
license: artistic_2
distribution_type: module
installdirs: site
requires:
perl: 5.006
Acme::CPANAuthors: 0.04
recommends:
Test::CPAN::Meta: 0
Test::CPAN::Meta::JSON: 0
Test::Pod: 1.00
Test::Pod::Coverage: 0.08
build_requires:
Test::More: 0.70
IO::File: 0
provides:
Acme::CPANAuthors::British:
file: lib/Acme/CPANAuthors/British.pm
version: 1.05
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.781 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )