Acme-CPANAuthors-GitHub
view release on metacpan or search on metacpan
use strict;
use warnings;
use Test::More tests => 4;
use Acme::CPANAuthors;
my $authors = new_ok('Acme::CPANAuthors' => [ 'GitHub' ]);
ok $authors->count, 'found authors';
# Force list context.
ok 1 <= (() = $authors->id), 'author ids';
ok $authors->name('GRAY'), 'author name';
( run in 1.342 second using v1.01-cache-2.11-cpan-5c0b1e786e0 )