File Coverage

blib/lib/CPAN/Changes/Markdown/Role/Filter.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   69561 use 5.006; # our
  8         25  
2 8     8   43 use strict;
  8         14  
  8         207  
3 8     8   36 use warnings;
  8         11  
  8         653  
4              
5             package CPAN::Changes::Markdown::Role::Filter;
6              
7             # ABSTRACT: A text filter of some kind
8              
9             our $VERSION = '1.000002';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 8     8   493 use Role::Tiny qw( requires );
  8         3143  
  8         51  
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__