File Coverage

blib/lib/Form/Factory/Control/Password.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Form::Factory::Control::Password;
2             $Form::Factory::Control::Password::VERSION = '0.022';
3 1     1   530 use Moose;
  1         1  
  1         7  
4              
5             with qw(
6             Form::Factory::Control
7             Form::Factory::Control::Role::Labeled
8             Form::Factory::Control::Role::ScalarValue
9             );
10              
11             # ABSTRACT: the password control
12              
13              
14             has '+value' => (
15             isa => 'Str',
16             );
17              
18             has '+default_value' => (
19             isa => 'Str',
20             default => '',
21             );
22              
23              
24             around has_current_value => sub {
25             my $next = shift;
26             my $self = shift;
27              
28             return ($self->has_value || $self->has_default_value)
29             && length($self->current_value) > 0;
30             };
31              
32             __PACKAGE__->meta->make_immutable;
33              
34             __END__
35              
36             =pod
37              
38             =encoding UTF-8
39              
40             =head1 NAME
41              
42             Form::Factory::Control::Password - the password control
43              
44             =head1 VERSION
45              
46             version 0.022
47              
48             =head1 SYNOPSIS
49              
50             has_control new_password => (
51             control => 'password',
52             );
53              
54             head1 DESCRIPTION
55              
56             This is a password control. It is similar to a text control, but does not stash anything and has no default value.
57              
58             =head1 METHODS
59              
60             =head2 has_current_value
61              
62             We have a current value if it is defined and has a non-zero string length.
63              
64             =head1 AUTHOR
65              
66             Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
67              
68             =head1 COPYRIGHT AND LICENSE
69              
70             This software is copyright (c) 2015 by Qubling Software LLC.
71              
72             This is free software; you can redistribute it and/or modify it under
73             the same terms as the Perl 5 programming language system itself.
74              
75             =cut