File Coverage

blib/lib/Password/Policy/Exception/InsufficientWhitespace.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::InsufficientWhitespace;
2             $Password::Policy::Exception::InsufficientWhitespace::VERSION = '0.04';
3 1     1   4 use strict;
  1         1  
  1         29  
4 1     1   4 use warnings;
  1         1  
  1         21  
5              
6 1     1   4 use parent 'Password::Policy::Exception';
  1         0  
  1         4  
7              
8 2     2 0 11 sub error { return "The specified password did not have enough whitespace characters"; }
9              
10             1;
11              
12             __END__