File Coverage

blib/lib/Package/Util.pm
Criterion Covered Total %
statement 8 12 66.6
branch n/a
condition n/a
subroutine 4 8 50.0
pod 0 4 0.0
total 12 24 50.0


line stmt bran cond sub pod time code
1             package Package::Util;
2              
3             BEGIN {
4 1     1   1759 require 5;
5             }
6              
7 1     1   7 use strict;
  1         2  
  1         42  
8 1     1   5 use vars qw{$VERSION};
  1         2  
  1         62  
9             BEGIN {
10 1     1   106 $VERSION = '0.01';
11             }
12              
13             # These are here just as to invite comment
14              
15             sub package_inc {
16 0     0 0   die 'package_inc not implemented';
17             }
18              
19             sub package_file {
20 0     0 0   die 'package_file not implemented';
21             }
22              
23             sub modules_loaded {
24 0     0 0   die 'module_loaded not implemented';
25             }
26              
27             sub class_loaded {
28 0     0 0   die 'class_loaded not implemented';
29             }
30              
31             1;
32              
33             __END__