File Coverage

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


line stmt bran cond sub pod time code
1 8     8   17822 use 5.006; # our
  8         23  
2 8     8   38 use strict;
  8         12  
  8         168  
3 8     8   30 use warnings;
  8         10  
  8         525  
4              
5             package CPAN::Changes::Markdown::Role::Filter::Node;
6              
7             # ABSTRACT: A parse node of some kind
8              
9             our $VERSION = '1.000002';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 8     8   475 use Role::Tiny qw( requires );
  8         3031  
  8         43  
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__