File Coverage

blib/lib/Time/y2038.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 Time::y2038;
2              
3 4     4   66701 use strict;
  4         9  
  4         138  
4 4     4   20 use warnings;
  4         8  
  4         114  
5              
6 4     4   21 use base qw(Exporter);
  4         7  
  4         463  
7 4     4   22 use XSLoader;
  4         6  
  4         334  
8              
9             our $VERSION = '20100403';
10             our @EXPORT = qw(localtime gmtime timegm timelocal);
11              
12             XSLoader::load __PACKAGE__, $VERSION;
13              
14             1;
15             __END__