File Coverage

blib/lib/Net/IPAddr/Find.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 Net::IPAddr::Find;
2              
3 1     1   5365 use strict;
  1         2  
  1         39  
4 1     1   6 use vars qw($VERSION @EXPORT);
  1         2  
  1         67  
5             $VERSION = '0.02';
6              
7 1     1   5 use base qw(Exporter);
  1         5  
  1         162  
8             @EXPORT = qw(find_ipaddrs);
9              
10 1     1   936 use NetAddr::IP::Find;
  1         70568  
  1         87  
11             *find_ipaddrs = \&NetAddr::IP::Find::find_ipaddrs;
12              
13             1;
14             __END__