File Coverage

blib/lib/Password/Policy/Exception/InsufficientLength.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::InsufficientLength;
2             $Password::Policy::Exception::InsufficientLength::VERSION = '0.06';
3 4     4   25 use strict;
  4         8  
  4         151  
4 4     4   18 use warnings;
  4         7  
  4         283  
5              
6 4     4   22 use parent 'Password::Policy::Exception';
  4         6  
  4         46  
7              
8 4     4 0 39 sub error { return "The specified password was not long enough"; }
9              
10             1;
11              
12             __END__