Acme-CPANAuthors-MetaSyntactic
view release on metacpan or search on metacpan
456789101112131415161718192021222324copyright_holder = Philippe Bruhat (BooK)
; copyright_year = 2014
[PkgVersion]
[
@Filter
]
-bundle =
@Basic
-remove = Readme
[PruneFiles]
filename = setup
match = \.patch$
match = mess/.*
match = cover_db
[AutoPrereqs]
[Prereqs]
Acme::CPANAuthors =
[MetaResources]
repository.web = http://github.com/book/Acme-CPANAuthors-MetaSyntactic
123456789101112131415161718use
strict;
use
warnings;
use
Test::More;
use
Acme::CPANAuthors;
ok(
defined
$Acme::CPANAuthors::MetaSyntactic::VERSION
,
"VERSION is set"
);
my
$authors
= Acme::CPANAuthors->new(
'MetaSyntactic'
);
ok(
$authors
,
'Got $authors'
);
ok(
$authors
->count,
"There are authors"
);
my
@ids
=
$authors
->id;
ok(
scalar
@ids
,
"There are ids"
);
ok(
$authors
->name(
"BOOK"
),
"Find a name"
);
done_testing;
( run in 0.478 second using v1.01-cache-2.11-cpan-26ccb49234f )