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   6 use strict;
  2         2  
  2         45  
12 2     2   6 use warnings;
  2         2  
  2         38  
13 2     2   5 no warnings 'uninitialized';
  2         2  
  2         47  
14              
15 2     2   5 use CGI::FormBuilder::Util;
  2         6  
  2         167  
16 2     2   9 use CGI::FormBuilder::Field::text;
  2         2  
  2         44  
17 2     2   6 use base 'CGI::FormBuilder::Field::text';
  2         1  
  2         133  
18              
19              
20             our $VERSION = '3.10';
21              
22             1;
23              
24             __END__