File Coverage

blib/lib/Clone.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             package Clone;
2              
3 9     9   37611 use strict;
  9         63  
  9         416  
4 9     9   56 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
  9         18  
  9         1317  
5              
6             require Exporter;
7             require DynaLoader;
8             require AutoLoader;
9              
10             @ISA = qw(Exporter DynaLoader);
11             @EXPORT = qw();
12             @EXPORT_OK = qw( clone );
13              
14             $VERSION = '0.44';
15              
16             bootstrap Clone $VERSION;
17              
18             1;
19             __END__