File Coverage

blib/lib/File/SubPM.pm
Criterion Covered Total %
statement 22 22 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 2 2 100.0
total 32 32 100.0


line stmt bran cond sub pod time code
1             #!perl
2             #
3             # Documentation, copyright and license is at the end of this file.
4             #
5             package File::SubPM;
6            
7 1     1   12030 use 5.001;
  1         4  
  1         51  
8 1     1   6 use strict;
  1         2  
  1         32  
9 1     1   20 use warnings;
  1         2  
  1         22  
10 1     1   6 use warnings::register;
  1         1  
  1         151  
11            
12 1     1   1033 use File::Where;
  1         922  
  1         49  
13            
14 1     1   6 use vars qw($VERSION $DATE);
  1         2  
  1         163  
15             $VERSION = '1.12';
16             $DATE = '2004/05/04';
17            
18             #####
19             # Determine the output generator program modules
20             #
21             sub sub_modules
22             {
23 1     1 1 464 my (undef,$base_file, @dirs) = @_;
24 1         11 File::Where->program_modules($base_file,'file',@dirs);
25             }
26            
27             #####
28             # Determine if a module is valid
29             #
30             sub is_module
31             {
32 1     1 1 8755 shift;
33 1         41 File::Where->is_module(@_);
34             }
35            
36             1
37            
38             __END__