File Coverage

blib/lib/Password/Policy/Exception/InsufficientLowercase.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Password::Policy::Exception::InsufficientLowercase;
2             $Password::Policy::Exception::InsufficientLowercase::VERSION = '0.03';
3 2     2   10 use strict;
  2         3  
  2         74  
4 2     2   11 use warnings;
  2         3  
  2         57  
5              
6 2     2   13 use parent 'Password::Policy::Exception';
  2         4  
  2         8  
7              
8 3     3 0 15 sub error { return "The specified password did not have enough lowercase ASCII characters"; }
9              
10             1;
11              
12             __END__