File Coverage

blib/lib/JSV/Keyword/Draft4/MinItems.pm
Criterion Covered Total %
statement 16 16 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 23 24 95.8


line stmt bran cond sub pod time code
1             package JSV::Keyword::Draft4::MinItems;
2              
3 47     47   21408 use strict;
  47         62  
  47         1054  
4 47     47   150 use warnings;
  47         61  
  47         952  
5 47     47   135 use parent qw(JSV::Keyword);
  47         54  
  47         172  
6              
7 47     47   2049 use JSV::Keyword qw(:constants);
  47         54  
  47         8042  
8              
9             sub instance_type() { INSTANCE_TYPE_ARRAY(); }
10             sub keyword() { "minItems" }
11             sub keyword_priority() { 10; }
12              
13             sub validate {
14 26     26 0 25 my ($class, $context, $schema, $instance) = @_;
15              
16 26         65 my $keyword_value = $class->keyword_value($schema);
17              
18 26 100       60 if (scalar(@$instance) < $keyword_value) {
19 10         17 $context->log_error("The instance array length is less than minItems value");
20             }
21             }
22              
23             1;