File Coverage

blib/lib/XML/Grammar/Fiction/FromProto/Node/List.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package XML::Grammar::Fiction::FromProto::Node::List;
2              
3 2     2   10 use strict;
  2         4  
  2         48  
4 2     2   9 use warnings;
  2         4  
  2         42  
5              
6 2     2   10 use MooX 'late';
  2         3  
  2         9  
7              
8             our $VERSION = 'v0.14.12';
9              
10             extends("XML::Grammar::Fiction::FromProto::Node");
11              
12             has 'contents' => (isa => "ArrayRef", is => "rw");
13              
14             1;
15              
16             __END__