File Coverage

blib/lib/Data/Validate/CSV/Note.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1 1     1   18 use v5.12;
  1         3  
2 1     1   7 use strict;
  1         3  
  1         27  
3 1     1   5 use warnings;
  1         2  
  1         65  
4              
5             package Data::Validate::CSV::Note;
6              
7             our $AUTHORITY = 'cpan:TOBYINK';
8             our $VERSION = '0.002';
9              
10 1     1   6 use Moo;
  1         31  
  1         7  
11 1     1   377 use Data::Validate::CSV::Types -types;
  1         3  
  1         10  
12 1     1   5661 use namespace::autoclean;
  1         3  
  1         9  
13              
14             has type => (is => 'ro', isa => Str);
15             has [qw(
16             via canonical rights motivation body target
17             creator generator audience
18             )] => (is => 'ro', isa => Any);
19              
20             1;