File Coverage

blib/lib/PasswordMonkey/Filler/Password.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             ###########################################
2             package PasswordMonkey::Filler::Password;
3             ###########################################
4 1     1   2742 use strict;
  1         1  
  1         33  
5 1     1   5 use warnings;
  1         2  
  1         29  
6 1     1   5 use base qw(PasswordMonkey::Filler);
  1         2  
  1         569  
7              
8             ###########################################
9             sub prompt {
10             ###########################################
11 1     1 1 5 my($self) = @_;
12              
13 1         88 return qr([Pp]assword:);
14             }
15              
16             1;
17              
18             __END__