File Coverage

blib/lib/CPAN/Nearest.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package CPAN::Nearest;
2 1     1   23076 use Text::Fuzzy '0.15';
  1         9619  
  1         206  
3             require Exporter;
4             @ISA = qw(Exporter);
5             @EXPORT_OK = qw/search/;
6 1     1   11 use warnings;
  1         2  
  1         31  
7 1     1   6 use strict;
  1         13  
  1         46  
8             our $VERSION = '0.12';
9 1     1   5 use XSLoader;
  1         2  
  1         48  
10             XSLoader::load 'CPAN::Nearest', $VERSION;
11              
12             1;
13              
14             __END__