File Coverage

blib/lib/Module/CPANTS/Kwalitee/Signature.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 3 3 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package Module::CPANTS::Kwalitee::Signature;
2 7     7   3593 use strict;
  7         20  
  7         209  
3 7     7   39 use warnings;
  7         14  
  7         950  
4              
5             our $VERSION = '1.00';
6             $VERSION =~ s/_//; ## no critic
7              
8 42     42 1 121 sub order { 100 }
9              
10             sub analyse {
11 11     11 1 52 my ($class, $self) = @_;
12              
13             # NOTE: The analysis/metric in this module has moved to
14             # Module::CPANTS::SiteKwalitee because this requires an external
15             # tool (though optional) and decent network connection to
16             # validate a signature.
17              
18             # Note also that this stub should not be removed so that
19             # this can replace the old ::Signature module, and the old
20             # metrics will not be loaded while loading plugins.
21             }
22              
23             sub kwalitee_indicators {
24 8     8 1 30 return [];
25             }
26              
27             1;
28              
29             __END__