Acme-CPANAuthors-InMemoriam
view release on metacpan or search on metacpan
"Acme::CPANAuthors": "0.04"
}
},
"test" : {
"requires": {
"IO::File": "0",
"Test::More": "0.70"
},
"recommends": {
"Test::CPAN::Meta": "0",
"Test::CPAN::Meta::JSON": "0",
"Test::Pod": "1.00",
"Test::Pod::Coverage": "0.08"
}
}
},
"provides": {
"Acme::CPANAuthors::InMemoriam": {
"file": "lib/Acme/CPANAuthors/InMemoriam.pm",
"version": "1.08"
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:
IO::File: 0
Test::More: 0.70
provides:
Acme::CPANAuthors::InMemoriam:
file: lib/Acme/CPANAuthors/InMemoriam.pm
version: 1.08
Acme::CPANAuthors
For testing the module requires these modules:
IO::File
Test::More
For optional testing the module would like these modules:
Test::CPAN::Meta
Test::CPAN::Meta::JSON
Test::Pod
Test::Pod::Coverage
COPYRIGHT AND LICENSE
Copyright (C) 2013-2025 Barbie for Miss Barbell Productions
This distribution is free software; you can redistribute it and/or
modify it under the Artistic Licence v2.
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::InMemoriam;
my $version = $Acme::CPANAuthors::InMemoriam::VERSION;
is($meta->{version},$version,
'META.json distribution version matches');
( run in 0.905 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )