line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CPAN::Dashboard::Distribution::CPANTesters; |
2
|
|
|
|
|
|
|
$CPAN::Dashboard::Distribution::CPANTesters::VERSION = '0.02'; |
3
|
1
|
|
|
1
|
|
14
|
use 5.006; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
30
|
|
4
|
1
|
|
|
1
|
|
4
|
use Moo; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has passes => (is => 'ro'); |
7
|
|
|
|
|
|
|
has fails => (is => 'ro'); |
8
|
|
|
|
|
|
|
has unknowns => (is => 'ro'); |
9
|
|
|
|
|
|
|
has na => (is => 'ro'); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
CPAN::Dashboard::Distribution::CPANTesters - Package to manage the CPAN Testers for CPAN Dashboard. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 DESCRIPTION |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
B |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 REPOSITORY |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
L |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 AUTHOR |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Neil Bowers Eneilb@cpan.orgE |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This software is copyright (c) 2014 by Neil Bowers . |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
34
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |