Acme-CPANAuthors-CPANTS-FiveOrMore
view release on metacpan or search on metacpan
t/000_basic.t view on Meta::CPAN
789101112131415161718192021222324252627no
warnings
'syntax'
;
use
Test::More 0.88;
use
Acme::CPANAuthors;
BEGIN {
use_ok (
'Acme::CPANAuthors::CPANTS::FiveOrMore'
) or
BAIL_OUT (
"Loading of 'Acme::CPANAuthors::CPANTS::FiveOrMores' failed"
);
}
ok
defined
$Acme::CPANAuthors::CPANTS::FiveOrMore::VERSION
,
"VERSION is set"
;
my
$authors
= Acme::CPANAuthors -> new (
'CPANTS::FiveOrMore'
);
ok
$authors
,
'Got $authors'
;
ok
$authors
-> count,
"There are authors"
;
my
@ids
=
$authors
-> id;
ok
scalar
@ids
,
"There are ids"
;
ok
$authors
-> name (
"ABIGAIL"
),
"Find a name"
;
( run in 0.218 second using v1.01-cache-2.11-cpan-0d8aa00de5b )