File Coverage

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


line stmt bran cond sub pod time code
1             package Log::Syslog::Fast;
2              
3 9     9   15365 use 5.006002;
  9         74  
4 9     9   48 use strict;
  9         15  
  9         245  
5 9     9   45 use warnings;
  9         17  
  9         446  
6              
7             our $VERSION = '0.67';
8              
9 9     9   3933 use Log::Syslog::Fast::Constants ':all';
  9         21  
  9         3625  
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__