File Coverage

blib/lib/Password/Policy/Exception/NoAlgorithm.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 Password::Policy::Exception::NoAlgorithm;
2             $Password::Policy::Exception::NoAlgorithm::VERSION = '0.04';
3 4     4   18 use strict;
  4         5  
  4         181  
4 4     4   21 use warnings;
  4         5  
  4         112  
5              
6 4     4   14 use parent 'Password::Policy::Exception';
  4         5  
  4         15  
7              
8 0     0 0   sub error { return "You did not specify an algorithm for that profile"; }
9              
10             1;
11              
12             __END__