File Coverage

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


line stmt bran cond sub pod time code
1 8     8   34539 use 5.008; # utf8
  8         28  
  8         368  
2 8     8   44 use strict;
  8         16  
  8         242  
3 8     8   40 use warnings;
  8         15  
  8         224  
4 8     8   1024 use utf8;
  8         23  
  8         113  
5              
6             package CPAN::Changes::Markdown::Role::Filter::Node;
7             $CPAN::Changes::Markdown::Role::Filter::Node::VERSION = '1.000000';
8             # ABSTRACT: A parse node of some kind
9              
10             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
11              
12 8     8   1508 use Role::Tiny qw( requires );
  8         4585  
  8         68  
13              
14              
15              
16              
17              
18             requires 'to_s';
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31             1;
32              
33             __END__