File Coverage

blib/lib/CPANXR.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 12 66.6


line stmt bran cond sub pod time code
1             # $Id: CPANXR.pm,v 1.11 2003/10/06 21:41:28 clajac Exp $
2              
3             package CPANXR;
4              
5             require 5.6.0;
6 1     1   1570 use strict;
  1         3  
  1         42  
7 1     1   6 use warnings;
  1         1  
  1         434  
8              
9             require Exporter;
10              
11             our @ISA = qw(Exporter);
12              
13             # Items to export into callers namespace by default. Note: do not export
14             # names by default without a very good reason. Use EXPORT_OK instead.
15             # Do not simply export all your public functions/methods/constants.
16              
17             # This allows declaration use CPANXR ':all';
18             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
19             # will save memory.
20             our %EXPORT_TAGS = ( 'all' => [ qw(
21            
22             ) ] );
23              
24             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
25              
26             our @EXPORT = qw(
27            
28             );
29             our $VERSION = '0.08';
30              
31             sub new {
32 0     0 0   my ($pkg) = @_;
33 0           return bless {}, $pkg;
34             }
35              
36             1;
37             __END__