Acme-CPANAuthors-MetaSyntactic

 view release on metacpan or  search on metacpan

dist.ini  view on Meta::CPAN

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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]

t/basic.t  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
 
 
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 )