File Coverage

blib/lib/Data/Validate/CSV/SingleValueCell.pm
Criterion Covered Total %
statement 17 18 94.4
branch n/a
condition n/a
subroutine 6 7 85.7
pod n/a
total 23 25 92.0


line stmt bran cond sub pod time code
1 2     2   29 use v5.12;
  2         7  
2 2     2   13 use strict;
  2         4  
  2         43  
3 2     2   10 use warnings;
  2         15  
  2         116  
4              
5             package Data::Validate::CSV::SingleValueCell;
6              
7             our $AUTHORITY = 'cpan:TOBYINK';
8             our $VERSION = '0.003';
9              
10 2     2   12 use Moo;
  2         9  
  2         15  
11 2     2   682 use B ();
  2         7  
  2         36  
12 2     2   10 use namespace::autoclean;
  2         5  
  2         19  
13             with 'Data::Validate::CSV::Cell';
14              
15             sub _chunk_for_key_string {
16 0     0     B::perlstring( shift->value );
17             }
18              
19             1;