Acme-CPANAuthors-EU
view release on metacpan or search on metacpan
t/000_basic.t view on Meta::CPAN
use warnings;
no warnings 'syntax';
use Test::More tests => 6;
use Acme::CPANAuthors;
BEGIN {
use_ok ('Acme::CPANAuthors::EU');
}
ok defined $Acme::CPANAuthors::EU::VERSION, "VERSION is set";
my $authors = Acme::CPANAuthors -> new ('EU');
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.475 second using v1.01-cache-2.11-cpan-49f99fa48dc )