File Coverage

blib/lib/Log/Saftpresse/Output.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::Output;
2              
3 1     1   720 use Moose;
  1         1  
  1         4  
4              
5             # ABSTRACT: base class for outputs
6             our $VERSION = '1.4'; # VERSION
7              
8             has 'name' => ( is => 'ro', isa => 'Str', required => 1 );
9              
10             sub output {
11 0     0 0   my ( $self, $event ) = @_;
12 0           die('not implemented');
13             }
14              
15 0     0 0   sub init { return; }
16              
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Log::Saftpresse::Output - base class for outputs
28              
29             =head1 VERSION
30              
31             version 1.4
32              
33             =head1 AUTHOR
34              
35             Markus Benning <ich@markusbenning.de>
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             This software is Copyright (c) 1998 by James S. Seymour, 2015 by Markus Benning.
40              
41             This is free software, licensed under:
42              
43             The GNU General Public License, Version 2, June 1991
44              
45             =cut