File Coverage

blib/lib/Object/Signature/File.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package Object::Signature::File;
2              
3 1     1   845 use strict;
  1         2  
  1         24  
4 1     1   4 use warnings;
  1         2  
  1         33  
5              
6             our $VERSION = '1.08';
7 1     1   4 use base 'Object::Signature';
  1         2  
  1         101  
8              
9              
10             #####################################################################
11             # Main Methods
12              
13             sub signature_ext {
14 0     0 1   undef;
15             }
16              
17             sub signature_name {
18 0     0 1   undef;
19             }
20              
21             1;
22              
23             __END__