File Coverage

blib/lib/XML/Grammar/Fiction/FromProto/Node/Text.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 16 81.2


line stmt bran cond sub pod time code
1             package XML::Grammar::Fiction::FromProto::Node::Text;
2              
3 2     2   12 use strict;
  2         3  
  2         64  
4 2     2   11 use warnings;
  2         4  
  2         78  
5              
6             our $VERSION = '0.14.10';
7              
8 2     2   9 use MooX 'late';
  2         5  
  2         11  
9              
10             extends("XML::Grammar::Fiction::FromProto::Node::WithContent");
11              
12              
13             sub get_text
14             {
15 0     0 1   my ($self, $re) = @_;
16              
17 0           return $self->children->contents->[0];
18             }
19              
20             1;
21              
22             __END__