File Coverage

blib/lib/Net/ICAP.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             # Net::ICAP -- Internet Content Adapataion Protocol (rfc3507)
2             #
3             # (c) 2014, Arthur Corliss
4             #
5             # $Revision: 0.04 $
6             #
7             # This software is licensed under the same terms as Perl, itself.
8             # Please see http://dev.perl.org/licenses/ for more information.
9             #
10             #####################################################################
11              
12             #####################################################################
13             #
14             # Environment definitions
15             #
16             #####################################################################
17              
18             package Net::ICAP;
19              
20 1     1   18 use 5.008003;
  1         3  
21              
22 1     1   5 use strict;
  1         2  
  1         17  
23 1     1   4 use warnings;
  1         3  
  1         28  
24 1     1   5 use vars qw($VERSION);
  1         2  
  1         69  
25              
26             ($VERSION) = (q$Revision: 0.04 $ =~ /(\d+(?:\.(\d+))+)/s);
27              
28 1     1   6 use Net::ICAP::Request;
  1         3  
  1         45  
29 1     1   5 use Net::ICAP::Response;
  1         2  
  1         35  
30              
31             #####################################################################
32             #
33             # Net::ICAP code follows
34             #
35             #####################################################################
36              
37             1;
38              
39             __END__