File Coverage

blib/lib/Log/Saftpresse/CountersOutput.pm
Criterion Covered Total %
statement 3 6 50.0
branch n/a
condition n/a
subroutine 1 3 33.3
pod 0 2 0.0
total 4 11 36.3


line stmt bran cond sub pod time code
1             package Log::Saftpresse::CountersOutput;
2              
3 1     1   2919 use Moose;
  1         1  
  1         9  
4              
5             # ABSTRACT: base class for output of counters
6             our $VERSION = '1.6'; # VERSION
7              
8             sub output {
9 0     0 0   my ( $self, $counters ) = @_;
10 0           die('not implemented');
11             }
12              
13 0     0 0   sub init { return; }
14              
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             Log::Saftpresse::CountersOutput - base class for output of counters
26              
27             =head1 VERSION
28              
29             version 1.6
30              
31             =head1 AUTHOR
32              
33             Markus Benning <ich@markusbenning.de>
34              
35             =head1 COPYRIGHT AND LICENSE
36              
37             This software is Copyright (c) 1998 by James S. Seymour, 2015 by Markus Benning.
38              
39             This is free software, licensed under:
40              
41             The GNU General Public License, Version 2, June 1991
42              
43             =cut