File Coverage

lib/Acme/CPANAuthors/MBTI/INTP.pm
Criterion Covered Total %
statement 12 16 75.0
branch 0 2 0.0
condition n/a
subroutine 4 7 57.1
pod 3 3 100.0
total 19 28 67.8


line stmt bran cond sub pod time code
1 2     2   837 use 5.008; # utf8
  2         6  
  2         68  
2 2     2   7 use strict;
  2         3  
  2         54  
3 2     2   15 use warnings;
  2         3  
  2         45  
4 2     2   1155 use utf8;
  2         19  
  2         7  
5              
6             package Acme::CPANAuthors::MBTI::INTP;
7              
8             # ABSTRACT: The TiNe CPAN Authors
9              
10             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
11              
12             our $VERSION = '0.001000';
13             #<<<
14             # Code inserted by inc/expand_author_list#authors_to_code
15             # by Dist::Zilla::Plugin::MungeFile::WithDataSection 0.007
16             ## no critic (ValuesAndExpressions::RestrictLongStrings)
17             my %authors = (
18             KENTNL => 'Kent Fredric',
19             );
20              
21             my %avatar_urls = (
22             KENTNL => 'https://secure.gravatar.com/avatar/4b96677ae9ecbe76b8c33ead244f7407?s=80&d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2F4b96677ae9ecbe76b8c33ead244f7407%3Fs%3D130%26d%3Didenticon',
23             );
24              
25             ## use critic
26              
27              
28              
29              
30              
31              
32              
33              
34 0 0   0 1   sub authors { return ( wantarray ? %authors : \%authors ) }
35              
36              
37              
38              
39              
40              
41              
42 0     0 1   sub category { return 'MBTI::INTP' }
43              
44              
45              
46              
47              
48              
49              
50             sub avatar_url {
51 0     0 1   my ( $id ) = @_;
52 0           return $avatar_urls{$id};
53             }
54              
55             # end generated code
56              
57             #>>>
58              
59             1;
60              
61             __END__