File Coverage

blib/lib/Time/Warp.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 1     1   513 use strict;
  1         2  
  1         42  
2             package Time::Warp;
3 1     1   5 use vars qw(@ISA @EXPORT_OK $VERSION);
  1         1  
  1         156  
4             require Exporter;
5             require DynaLoader;
6             @ISA = qw(DynaLoader Exporter);
7             @EXPORT_OK = qw(reset to scale time);
8             $VERSION = '0.54';
9              
10             __PACKAGE__->bootstrap($VERSION);
11              
12             install_time_api();
13              
14             1;
15             __END__