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   64331 use strict;
  135         233  
  135         5654  
3 135     135   615 use warnings;
  135         154  
  135         4472  
4 135     135   84994 use utf8;
  135         1183  
  135         595  
5              
6             # ABSTRACT
7             sub evaluate {
8 0     0 0   die 'Not implemented!';
9             }
10              
11             1;
12