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.03';
3 3     3   13 use strict;
  3         72  
  3         123  
4 3     3   14 use warnings;
  3         4  
  3         94  
5              
6 3     3   11 use parent 'Password::Policy::Exception';
  3         3  
  3         15  
7              
8 4     4 0 30 sub error { return "The specified password was not long enough"; }
9              
10             1;
11              
12             __END__