File Coverage

blib/lib/PGP/Finger/Result.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package PGP::Finger::Result;
2              
3 1     1   4 use Moose;
  1         1  
  1         8  
4              
5             # ABSTRACT: a gpgfinger result object
6             our $VERSION = '1.1'; # VERSION
7              
8             has 'keys' => (
9             is => 'ro', isa => 'ArrayRef[PGP::Finger::Key]', lazy => 1,
10             traits => [ 'Array' ],
11             default => sub { [] },
12             handles => {
13             add_key => 'push',
14             count => 'count',
15             },
16             );
17              
18             1;
19              
20             __END__
21              
22             =pod
23              
24             =encoding UTF-8
25              
26             =head1 NAME
27              
28             PGP::Finger::Result - a gpgfinger result object
29              
30             =head1 VERSION
31              
32             version 1.1
33              
34             =head1 AUTHOR
35              
36             Markus Benning <ich@markusbenning.de>
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is Copyright (c) 2015 by Markus Benning.
41              
42             This is free software, licensed under:
43              
44             The GNU General Public License, Version 2 or later
45              
46             =cut