File Coverage

blib/lib/Net/IP/CMatch.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 Net::IP::CMatch;
2              
3 1     1   24329 use 5.006001;
  1         3  
  1         41  
4 1     1   6 use strict;
  1         2  
  1         34  
5 1     1   5 use warnings;
  1         5  
  1         123  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our @EXPORT = qw(
12             match_ip
13             );
14              
15             our $VERSION = '0.02';
16              
17             require XSLoader;
18             XSLoader::load('Net::IP::CMatch', $VERSION);
19              
20             1;
21              
22             __END__