File Coverage

blib/lib/String/Lookup.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package String::Lookup;
2             $VERSION= 0.12;
3              
4             # what runtime features we need
5 6     6   164825 use 5.014;
  6         24  
  6         223  
6 6     6   34 use warnings;
  6         11  
  6         219  
7              
8             # just use the PurePerl implementation for now
9 6     6   3685 use String::Lookup::PurePerl;
  6         14  
  6         193  
10              
11             # satisfy -require-
12             1;
13              
14             #-------------------------------------------------------------------------------
15              
16             __END__