File Coverage

blib/lib/PGP/Finger/Source.pm
Criterion Covered Total %
statement 3 4 75.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 7 57.1


line stmt bran cond sub pod time code
1             package PGP::Finger::Source;
2              
3 1     1   415 use Moose;
  1         1  
  1         5  
4              
5             # ABSTRACT: base class for a gpgfinger source
6             our $VERSION = '1.1'; # VERSION
7              
8             sub fetch {
9 0     0 0   die('unimplemented');
10             }
11              
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             PGP::Finger::Source - base class for a gpgfinger source
23              
24             =head1 VERSION
25              
26             version 1.1
27              
28             =head1 AUTHOR
29              
30             Markus Benning <ich@markusbenning.de>
31              
32             =head1 COPYRIGHT AND LICENSE
33              
34             This software is Copyright (c) 2015 by Markus Benning.
35              
36             This is free software, licensed under:
37              
38             The GNU General Public License, Version 2 or later
39              
40             =cut