File Coverage

blib/lib/CPAN/Changes/Markdown/Role/Filter/Rule.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 11     11   4458 use 5.006; # our
  11         27  
2 11     11   42 use strict;
  11         39  
  11         510  
3 11     11   38 use warnings;
  11         13  
  11         606  
4              
5             package CPAN::Changes::Markdown::Role::Filter::Rule;
6              
7             # ABSTRACT: A step filter
8              
9             our $VERSION = '1.000002';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 11     11   606 use Role::Tiny qw( requires );
  11         2950  
  11         49  
14              
15              
16              
17              
18              
19             requires 'filter';
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31              
32             1;
33              
34             __END__