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