File Coverage

blib/lib/Perl/Lint/Policy.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1             package Perl::Lint::Policy;
2 135     135   45179 use strict;
  135         158  
  135         3001  
3 135     135   414 use warnings;
  135         120  
  135         2497  
4 135     135   60497 use utf8;
  135         966  
  135         450  
5              
6             # ABSTRACT
7             sub evaluate {
8 0     0 0   die 'Not implemented!';
9             }
10              
11             1;
12