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 1     1   14 use v5.12;
  1         4  
2 1     1   7 use strict;
  1         3  
  1         21  
3 1     1   5 use warnings;
  1         3  
  1         59  
4              
5             package Data::Validate::CSV::SingleValueCell;
6              
7             our $AUTHORITY = 'cpan:TOBYINK';
8             our $VERSION = '0.002';
9              
10 1     1   5 use Moo;
  1         3  
  1         8  
11 1     1   344 use B ();
  1         2  
  1         17  
12 1     1   6 use namespace::autoclean;
  1         2  
  1         7  
13             with 'Data::Validate::CSV::Cell';
14              
15             sub _chunk_for_key_string {
16 0     0     B::perlstring( shift->value );
17             }
18              
19             1;