File Coverage

blib/lib/CPAN/Changes/Markdown/Role/Filter/Node.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 8     8   17536 use 5.006; # our
  8         22  
  8         254  
2 8     8   29 use strict;
  8         11  
  8         196  
3 8     8   26 use warnings;
  8         11  
  8         430  
4              
5             package CPAN::Changes::Markdown::Role::Filter::Node;
6              
7             # ABSTRACT: A parse node of some kind
8              
9             our $VERSION = '1.000001';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 8     8   523 use Role::Tiny qw( requires );
  8         3228  
  8         76  
14              
15              
16              
17              
18              
19             requires 'to_s';
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31              
32             1;
33              
34             __END__