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