File Coverage

blib/lib/Validation/Class/Directive/MinLength.pm
Criterion Covered Total %
statement 20 20 100.0
branch 5 6 83.3
condition 4 6 66.6
subroutine 5 5 100.0
pod 0 1 0.0
total 34 38 89.4


line stmt bran cond sub pod time code
1             # ABSTRACT: MinLength Directive for Validation Class Field Definitions
2              
3             package Validation::Class::Directive::MinLength;
4              
5 109     109   44310 use strict;
  109         259  
  109         2772  
6 109     109   512 use warnings;
  109         220  
  109         2535  
7              
8 109     109   501 use base 'Validation::Class::Directive';
  109         203  
  109         9335  
9              
10 109     109   684 use Validation::Class::Util;
  109         213  
  109         618  
11              
12             our $VERSION = '7.900058'; # VERSION
13              
14              
15             has 'mixin' => 1;
16             has 'field' => 1;
17             has 'multi' => 0;
18             has 'message' => '%s must not contain less than %s characters';
19              
20             sub validate {
21              
22 168     168 0 453 my $self = shift;
23              
24 168         367 my ($proto, $field, $param) = @_;
25              
26 168 100 66     801 if (defined $field->{min_length} && defined $param) {
27              
28 164         468 my $min_length = $field->{min_length};
29              
30 164 50 66     582 if ( $field->{required} || $param ) {
31              
32 164 100       490 if (length($param) < $min_length) {
33              
34 12         71 $self->error(@_, $min_length);
35              
36             }
37              
38             }
39              
40             }
41              
42 168         378 return $self;
43              
44             }
45              
46             1;
47              
48             __END__