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 | 37307 | use strict; | |||
9 | 61 | ||||||
9 | 414 | ||||||
4 | 9 | 9 | 59 | use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD); | |||
9 | 16 | ||||||
9 | 1335 | ||||||
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.45'; | ||||||
15 | |||||||
16 | bootstrap Clone $VERSION; | ||||||
17 | |||||||
18 | 1; | ||||||
19 | __END__ |