File Coverage

blib/lib/Protocol/OTR/Fingerprint.pm
Criterion Covered Total %
statement 7 14 50.0
branch n/a
condition n/a
subroutine 3 7 42.8
pod 3 3 100.0
total 13 24 54.1


line stmt bran cond sub pod time code
1             # ABSTRACT: Off-the-Record contact's Fingerprint
2             package Protocol::OTR::Fingerprint;
3             BEGIN {
4 4     4   139 $Protocol::OTR::Fingerprint::AUTHORITY = 'cpan:AJGB';
5             }
6             $Protocol::OTR::Fingerprint::VERSION = '0.04';
7 4     4   18 use strict;
  4         5  
  4         110  
8 4     4   14 use warnings;
  4         5  
  4         540  
9              
10             sub _new {
11 0     0     my ($class, $cnt, $args) = @_;
12              
13 0           my $self = bless $args, $class;
14 0           $self->{cnt} = $cnt;
15              
16 0           return $self;
17             }
18              
19             sub contact {
20 0     0 1   return $_[0]->{cnt};
21             }
22              
23             sub status {
24 0     0 1   return $_[0]->{status};
25             }
26              
27             sub is_verified {
28 0     0 1   return $_[0]->{is_verified};
29             }
30              
31             1;
32              
33             __END__