File Coverage

blib/lib/Object/Signature/File.pm
Criterion Covered Total %
statement 14 16 87.5
branch n/a
condition n/a
subroutine 5 7 71.4
pod 2 2 100.0
total 21 25 84.0


line stmt bran cond sub pod time code
1             package Object::Signature::File;
2              
3 1     1   1231 use 5.005;
  1         3  
  1         39  
4 1     1   5 use strict;
  1         2  
  1         37  
5 1     1   5 use Object::Signature ();
  1         2  
  1         19  
6              
7 1     1   6 use vars qw{$VERSION @ISA};
  1         3  
  1         70  
8             BEGIN {
9 1     1   2 $VERSION = '1.07';
10 1         86 @ISA = 'Object::Signature';
11             }
12              
13              
14              
15              
16              
17             #####################################################################
18             # Main Methods
19              
20             sub signature_ext {
21 0     0 1   undef;
22             }
23              
24             sub signature_name {
25 0     0 1   undef;
26             }
27              
28             1;
29              
30             __END__