File Coverage

blib/lib/Log/Syslog/Fast.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Log::Syslog::Fast;
2              
3 9     9   12738 use 5.006002;
  9         24  
  9         301  
4 9     9   36 use strict;
  9         11  
  9         388  
5 9     9   42 use warnings;
  9         9  
  9         377  
6              
7             our $VERSION = '0.64';
8              
9 9     9   3196 use Log::Syslog::Fast::Constants ':all';
  9         16  
  9         3140  
10             require Exporter;
11             our @ISA = qw(Exporter);
12             our @EXPORT = qw();
13             our %EXPORT_TAGS = %Log::Syslog::Fast::Constants::EXPORT_TAGS;
14             our @EXPORT_OK = @Log::Syslog::Fast::Constants::EXPORT_OK;
15              
16             require XSLoader;
17             XSLoader::load('Log::Syslog::Fast', $VERSION);
18              
19             1;
20             __END__