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.14; | ||||||
3 | |||||||
4 | # what runtime features we need | ||||||
5 | 6 | 6 | 406616 | use 5.014; | |||
6 | 69 | ||||||
6 | 6 | 6 | 32 | use warnings; | |||
6 | 11 | ||||||
6 | 172 | ||||||
7 | |||||||
8 | # just use the PurePerl implementation for now | ||||||
9 | 6 | 6 | 2798 | use String::Lookup::PurePerl; | |||
6 | 14 | ||||||
6 | 203 | ||||||
10 | |||||||
11 | # satisfy -require- | ||||||
12 | 1; | ||||||
13 | |||||||
14 | #------------------------------------------------------------------------------- | ||||||
15 | |||||||
16 | __END__ |