File Coverage

blib/lib/CPAN/Changes/Markdown/Role/Filter.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   50741 use 5.006; # our
  8         22  
  8         262  
2 8     8   29 use strict;
  8         10  
  8         201  
3 8     8   27 use warnings;
  8         12  
  8         443  
4              
5             package CPAN::Changes::Markdown::Role::Filter;
6              
7             # ABSTRACT: A text filter of some kind
8              
9             our $VERSION = '1.000001';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 8     8   508 use Role::Tiny qw( requires );
  8         2992  
  8         39  
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31              
32             requires 'process';
33              
34             1;
35              
36             __END__