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