File Coverage

blib/lib/Password/Policy/Encryption/Plaintext.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 16 17 94.1


line stmt bran cond sub pod time code
1             package Password::Policy::Encryption::Plaintext;
2             $Password::Policy::Encryption::Plaintext::VERSION = '0.06';
3 3     3   87655 use strict;
  3         5  
  3         139  
4 3     3   14 use warnings;
  3         4  
  3         218  
5              
6 3     3   334 use parent 'Password::Policy::Encryption';
  3         269  
  3         17  
7              
8             sub enc {
9 12     12 0 112 my $self = shift;
10 12         34 my $password = $self->prepare(shift);
11 11         33 return $password;
12             }
13              
14             1;
15              
16             __END__