File Coverage

blib/lib/Validation/Class/Directive/Zipcode.pm
Criterion Covered Total %
statement 18 18 100.0
branch 4 6 66.6
condition 2 6 33.3
subroutine 5 5 100.0
pod 0 1 0.0
total 29 36 80.5


line stmt bran cond sub pod time code
1             # ABSTRACT: Zipcode Directive for Validation Class Field Definitions
2              
3             package Validation::Class::Directive::Zipcode;
4              
5 109     109   43688 use strict;
  109         236  
  109         2681  
6 109     109   502 use warnings;
  109         214  
  109         2524  
7              
8 109     109   512 use base 'Validation::Class::Directive';
  109         207  
  109         8596  
9              
10 109     109   704 use Validation::Class::Util;
  109         261  
  109         602  
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 is not a valid postal code';
19              
20             sub validate {
21              
22 19     19 0 34 my ($self, $proto, $field, $param) = @_;
23              
24 19 50 33     74 if (defined $field->{zipcode} && defined $param) {
25              
26 19 50 33     56 if ($field->{required} || $param) {
27              
28 19         57 my $zcre = qr/\A\b[0-9]{5}(?:-[0-9]{4})?\b\z/i;
29 19 100       157 $self->error($proto, $field) unless $param =~ $zcre;
30              
31             }
32              
33             }
34              
35 19         46 return $self;
36              
37             }
38              
39             1;
40              
41             __END__