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 109     109   43213 use strict;
  109         223  
  109         2674  
6 109     109   512 use warnings;
  109         212  
  109         2462  
7              
8 109     109   478 use base 'Validation::Class::Directive';
  109         204  
  109         8928  
9              
10 109     109   628 use Validation::Class::Util;
  109         220  
  109         573  
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 more than %s alphabetic characters';
19              
20             sub validate {
21              
22 4     4 0 6 my $self = shift;
23              
24 4         7 my ($proto, $field, $param) = @_;
25              
26 4 50 33     16 if (defined $field->{max_alpha} && defined $param) {
27              
28 4         8 my $max_alpha = $field->{max_alpha};
29              
30 4 50 33     11 if ( $field->{required} || $param ) {
31              
32 4         23 my @i = ($param =~ /[a-zA-Z]/g);
33              
34 4 100       12 if (@i > $max_alpha) {
35              
36 1         9 $self->error(@_, $max_alpha);
37              
38             }
39              
40             }
41              
42             }
43              
44 4         10 return $self;
45              
46             }
47              
48             1;
49              
50             __END__