| blib/lib/String/Lookup.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 8 | 8 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 |
| pod | n/a | ||
| total | 11 | 11 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package String::Lookup; | ||||||
| 2 | $VERSION= 0.13; | ||||||
| 3 | |||||||
| 4 | # what runtime features we need | ||||||
| 5 | 6 | 6 | 408225 | use 5.014; | |||
| 6 | 56 | ||||||
| 6 | 6 | 6 | 26 | use warnings; | |||
| 6 | 10 | ||||||
| 6 | 141 | ||||||
| 7 | |||||||
| 8 | # just use the PurePerl implementation for now | ||||||
| 9 | 6 | 6 | 2470 | use String::Lookup::PurePerl; | |||
| 6 | 12 | ||||||
| 6 | 168 | ||||||
| 10 | |||||||
| 11 | # satisfy -require- | ||||||
| 12 | 1; | ||||||
| 13 | |||||||
| 14 | #------------------------------------------------------------------------------- | ||||||
| 15 | |||||||
| 16 | __END__ |