File Coverage

blib/lib/Time/TZOffset.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Time::TZOffset;
2 2     2   28390 use 5.008004;
  2         7  
  2         83  
3 2     2   16 use strict;
  2         3  
  2         67  
4 2     2   16 use warnings;
  2         4  
  2         60  
5 2     2   7 use base qw/Exporter/;
  2         3  
  2         249  
6              
7              
8             our $VERSION = "0.04";
9             our @EXPORT_OK = qw/tzoffset tzoffset_as_seconds/;
10              
11 2     2   10 use XSLoader;
  2         3  
  2         67  
12             XSLoader::load(__PACKAGE__, $VERSION);
13              
14             1;
15             __END__