| 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 | 10 | 10 | 104471 | use strict; | |||
| 10 | 76 | ||||||
| 10 | 462 | ||||||
| 4 | our $AUTOLOAD; | ||||||
| 5 | |||||||
| 6 | require Exporter; | ||||||
| 7 | require AutoLoader; | ||||||
| 8 | 10 | 10 | 49 | use XSLoader (); | |||
| 10 | 19 | ||||||
| 10 | 845 | ||||||
| 9 | |||||||
| 10 | our @ISA = qw(Exporter); | ||||||
| 11 | our @EXPORT; | ||||||
| 12 | our @EXPORT_OK = qw( clone ); | ||||||
| 13 | |||||||
| 14 | our $VERSION = '0.46'; | ||||||
| 15 | |||||||
| 16 | XSLoader::load('Clone', $VERSION); | ||||||
| 17 | |||||||
| 18 | 1; | ||||||
| 19 | __END__ |