| blib/lib/autobox/universal.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 12 | 12 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 4 | 4 | 100.0 |
| pod | n/a | ||
| total | 16 | 16 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package autobox::universal; | ||||||
| 2 | |||||||
| 3 | 19 | 19 | 26666 | use strict; | |||
| 19 | 24 | ||||||
| 19 | 620 | ||||||
| 4 | 19 | 19 | 65 | use warnings; | |||
| 19 | 22 | ||||||
| 19 | 401 | ||||||
| 5 | |||||||
| 6 | 19 | 19 | 667 | use autobox (); # don't import() | |||
| 19 | 21 | ||||||
| 19 | 227 | ||||||
| 7 | |||||||
| 8 | 19 | 19 | 55 | use Exporter (); # perl 5.8.0 doesn't support "use Exporter qw(import)" | |||
| 19 | 22 | ||||||
| 19 | 847 | ||||||
| 9 | |||||||
| 10 | our @ISA = qw(Exporter); | ||||||
| 11 | our @EXPORT_OK = qw(type); | ||||||
| 12 | |||||||
| 13 | 1; |