File Coverage

blib/lib/XML/Grammar/Fiction/FromProto/Node/Comment.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::Comment;
2              
3 2     2   10 use strict;
  2         3  
  2         59  
4 2     2   10 use warnings;
  2         3  
  2         47  
5              
6 2     2   11 use MooX 'late';
  2         3  
  2         9  
7              
8             our $VERSION = '0.14.10';
9              
10             extends("XML::Grammar::Fiction::FromProto::Node");
11              
12             has "text" => (isa => "Str", is => "rw");
13              
14             1;
15              
16             __END__