File Coverage

blib/lib/Time/y2038/Everywhere.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Time::y2038::Everywhere;
2              
3 1     1   29727 use strict;
  1         2  
  1         40  
4 1     1   6 use warnings;
  1         2  
  1         48  
5              
6             our $VERSION = '20100403';
7              
8 1     1   473 use Time::y2038;
  1         3  
  1         112  
9              
10             *CORE::GLOBAL::localtime = \&localtime;
11             *CORE::GLOBAL::gmtime = \&gmtime;
12              
13             1;
14              
15             __END__