| 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 | 18 | 18 | 1045808 | use strict; | |||
| 18 | 33 | ||||||
| 18 | 819 | ||||||
| 4 | |||||||
| 5 | require Exporter; | ||||||
| 6 | 18 | 18 | 89 | use XSLoader (); | |||
| 18 | 33 | ||||||
| 18 | 1749 | ||||||
| 7 | |||||||
| 8 | our @ISA = qw(Exporter); | ||||||
| 9 | our @EXPORT; | ||||||
| 10 | our @EXPORT_OK = qw( clone ); | ||||||
| 11 | |||||||
| 12 | our $VERSION = '0.49'; | ||||||
| 13 | |||||||
| 14 | XSLoader::load('Clone', $VERSION); | ||||||
| 15 | |||||||
| 16 | 1; | ||||||
| 17 | __END__ |