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   52701 use strict;
  109         297  
  109         3220  
6 109     109   590 use warnings;
  109         289  
  109         2862  
7              
8 109     109   609 use base 'Validation::Class::Directive';
  109         277  
  109         10238  
9              
10 109     109   811 use Validation::Class::Util;
  109         327  
  109         687  
11              
12             our $VERSION = '7.900059'; # 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         11 my ($proto, $field, $param) = @_;
25              
26 4 50 33     19 if (defined $field->{max_alpha} && defined $param) {
27              
28 4         9 my $max_alpha = $field->{max_alpha};
29              
30 4 50 33     18 if ( $field->{required} || $param ) {
31              
32 4         27 my @i = ($param =~ /[a-zA-Z]/g);
33              
34 4 100       14 if (@i > $max_alpha) {
35              
36 1         13 $self->error(@_, $max_alpha);
37              
38             }
39              
40             }
41              
42             }
43              
44 4         12 return $self;
45              
46             }
47              
48             1;
49              
50             __END__