File Coverage

blib/lib/Validation/Class/Directive/MixinField.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: MixinField Directive for Validation Class Field Definitions
2              
3             package Validation::Class::Directive::MixinField;
4              
5 109     109   42449 use strict;
  109         229  
  109         2695  
6 109     109   476 use warnings;
  109         205  
  109         2314  
7              
8 109     109   462 use base 'Validation::Class::Directive';
  109         205  
  109         8262  
9              
10 109     109   623 use Validation::Class::Util;
  109         220  
  109         583  
11              
12             our $VERSION = '7.900058'; # VERSION
13              
14              
15             has 'mixin' => 0;
16             has 'field' => 1;
17             has 'multi' => 0;
18              
19             1;
20              
21             __END__