File Coverage

blib/lib/Validation/Class/Directive/MinDigits.pm
Criterion Covered Total %
statement 21 21 100.0
branch 4 6 66.6
condition 2 6 33.3
subroutine 5 5 100.0
pod 0 1 0.0
total 32 39 82.0


line stmt bran cond sub pod time code
1             # ABSTRACT: MinDigits Directive for Validation Class Field Definitions
2              
3             package Validation::Class::Directive::MinDigits;
4              
5 109     109   43299 use strict;
  109         226  
  109         2670  
6 109     109   546 use warnings;
  109         204  
  109         2352  
7              
8 109     109   577 use base 'Validation::Class::Directive';
  109         202  
  109         8762  
9              
10 109     109   626 use Validation::Class::Util;
  109         218  
  109         624  
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 digits';
19              
20             sub validate {
21              
22 4     4 0 5 my $self = shift;
23              
24 4         9 my ($proto, $field, $param) = @_;
25              
26 4 50 33     16 if (defined $field->{min_digits} && defined $param) {
27              
28 4         8 my $min_digits = $field->{min_digits};
29              
30 4 50 33     14 if ( $field->{required} || $param ) {
31              
32 4         23 my @i = ($param =~ /[0-9]/g);
33              
34 4 100       12 if (@i < $min_digits) {
35              
36 1         8 $self->error(@_, $min_digits);
37              
38             }
39              
40             }
41              
42             }
43              
44 4         9 return $self;
45              
46             }
47              
48             1;
49              
50             __END__