Acme-CPANAuthors-MetaSyntactic
view release on metacpan or search on metacpan
copyright_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
use strict;
use warnings;
use Test::More;
use Acme::CPANAuthors;
use Acme::CPANAuthors::MetaSyntactic;
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 1.591 second using v1.01-cache-2.11-cpan-49f99fa48dc )