File Coverage

blib/lib/Acme/CPANModules/Soundex.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Acme::CPANModules::Soundex;
2              
3 1     1   359272 use strict;
  1         2  
  1         108  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2024-11-20'; # DATE
7             our $DIST = 'Acme-CPANModules-Soundex'; # DIST
8             our $VERSION = '0.001'; # VERSION
9              
10             our $LIST = {
11             summary => "List of modules that implement the soundex algorithm",
12             description => <<'MARKDOWN',
13              
14              
15             MARKDOWN
16             entries => [
17             {
18             module => 'Text::Soundex',
19             },
20             {
21             module => 'Text::Phonetic::Soundex',
22             description => <<'MARKDOWN',
23              
24             Part of a family of modules that implement phonetic algorithms.
25              
26             MARKDOWN
27             },
28             ],
29             };
30              
31             1;
32             # ABSTRACT: List of modules that implement the soundex algorithm
33              
34             __END__