File Coverage

blib/lib/Dancer2/Plugin/FormValidator/Validator/Boolean.pm
Criterion Covered Total %
statement 23 24 95.8
branch 1 2 50.0
condition n/a
subroutine 9 9 100.0
pod 0 2 0.0
total 33 37 89.1


line stmt bran cond sub pod time code
1              
2             use strict;
3 2     2   1332 use warnings;
  2         4  
  2         48  
4 2     2   9  
  2         3  
  2         57  
5             use Moo;
6 2     2   7 use utf8;
  2         4  
  2         9  
7 2     2   536 use List::Util qw(any);
  2         5  
  2         10  
8 2     2   57 use namespace::clean;
  2         4  
  2         149  
9 2     2   9  
  2         4  
  2         11  
10             with 'Dancer2::Plugin::FormValidator::Role::Validator';
11              
12             return {
13             en => '%s must be boolean',
14             ru => '%s должно иметь логическое значение',
15 1     1 0 1589 de => '%s muss boolesch sein',
16             };
17             }
18              
19             my ($self, $field, $input) = @_;
20              
21             if ($self->_field_defined_and_non_empty($field, $input)) {
22 2     2 0 6 return any { $input->{$field} eq $_ } qw(0 1);
23             }
24 2 50       9  
25 2     4   14 return 1;
  4         17  
26             }
27              
28 0           1;