File Coverage

blib/lib/Text/Metaphone.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 Text::Metaphone;
2              
3 1     1   12495 use strict;
  1         1  
  1         21  
4 1     1   3 use warnings;
  1         1  
  1         30  
5              
6             require Exporter;
7             require DynaLoader;
8              
9 1     1   413 use integer;
  1         10  
  1         4  
10              
11             our @ISA = qw(Exporter DynaLoader);
12              
13             our @EXPORT = qw(
14             Metaphone
15             );
16              
17             our $VERSION = '20160804';
18              
19             bootstrap Text::Metaphone $VERSION;
20              
21             1;
22              
23             __END__