File Coverage

blib/lib/Validation/Class/Directive/MaxAlpha.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: MaxAlpha Directive for Validation Class Field Definitions
2              
3             package Validation::Class::Directive::MaxAlpha;
4              
5 108     108   71499 use strict;
  108         244  
  108         3108  
6 108     108   617 use warnings;
  108         223  
  108         3104  
7              
8 108     108   565 use base 'Validation::Class::Directive';
  108         215  
  108         8388  
9              
10 108     108   578 use Validation::Class::Util;
  108         221  
  108         761  
11              
12             our $VERSION = '7.900057'; # VERSION
13              
14              
15             has 'mixin' => 1;
16             has 'field' => 1;
17             has 'multi' => 0;
18             has 'message' => '%s must not contain more than %s alphabetic characters';
19              
20             sub validate {
21              
22 4     4 0 7 my $self = shift;
23              
24 4         7 my ($proto, $field, $param) = @_;
25              
26 4 50 33     28 if (defined $field->{max_alpha} && defined $param) {
27              
28 4         7 my $max_alpha = $field->{max_alpha};
29              
30 4 50 33     25 if ( $field->{required} || $param ) {
31              
32 4         27 my @i = ($param =~ /[a-zA-Z]/g);
33              
34 4 100       17 if (@i > $max_alpha) {
35              
36 1         15 $self->error(@_, $max_alpha);
37              
38             }
39              
40             }
41              
42             }
43              
44 4         15 return $self;
45              
46             }
47              
48             1;
49              
50             __END__