File Coverage

blib/lib/Mail/MtPolicyd/Connection.pm
Criterion Covered Total %
statement 5 9 55.5
branch n/a
condition n/a
subroutine 2 4 50.0
pod 0 3 0.0
total 7 16 43.7


line stmt bran cond sub pod time code
1             package Mail::MtPolicyd::Connection;
2              
3 6     6   4077 use Moose;
  6         8  
  6         32  
4              
5             our $VERSION = '2.01'; # VERSION
6             # ABSTRACT: base class for mtpolicyd connection modules
7              
8             has 'name' => ( is => 'ro', isa => 'Str', required => 1 );
9              
10             sub init {
11 5     5 0 9 my $self = shift;
12 5         13 return;
13             }
14              
15             sub reconnect {
16 0     0 0   my $self = shift;
17 0           return;
18             }
19              
20             sub shutdown {
21 0     0 0   my $self = shift;
22 0           return;
23             }
24              
25             1;
26              
27             __END__
28              
29             =pod
30              
31             =encoding UTF-8
32              
33             =head1 NAME
34              
35             Mail::MtPolicyd::Connection - base class for mtpolicyd connection modules
36              
37             =head1 VERSION
38              
39             version 2.01
40              
41             =head1 AUTHOR
42              
43             Markus Benning <ich@markusbenning.de>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is Copyright (c) 2014 by Markus Benning <ich@markusbenning.de>.
48              
49             This is free software, licensed under:
50              
51             The GNU General Public License, Version 2, June 1991
52              
53             =cut