File Coverage

lib/CGI/FormBuilder/Field/password.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1              
2             ###########################################################################
3             # Copyright (c) Nate Wiger http://nateware.com. All Rights Reserved.
4             # Please visit http://formbuilder.org for tutorials, support, and examples.
5             ###########################################################################
6              
7             # password fields look like text fields
8              
9             package CGI::FormBuilder::Field::password;
10              
11 2     2   11 use strict;
  2         4  
  2         77  
12 2     2   11 use warnings;
  2         4  
  2         78  
13 2     2   10 no warnings 'uninitialized';
  2         2  
  2         75  
14              
15 2     2   16 use CGI::FormBuilder::Util;
  2         4  
  2         328  
16 2     2   12 use CGI::FormBuilder::Field::text;
  2         4  
  2         81  
17 2     2   9 use base 'CGI::FormBuilder::Field::text';
  2         4  
  2         232  
18              
19              
20             our $VERSION = '3.09';
21              
22             1;
23              
24             __END__