File Coverage

blib/lib/CPAN/Changes/Markdown/Role/Filter.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   107704 use 5.008; # utf8
  8         32  
  8         350  
2 8     8   48 use strict;
  8         15  
  8         295  
3 8     8   47 use warnings;
  8         14  
  8         290  
4 8     8   1001 use utf8;
  8         25  
  8         60  
5              
6             package CPAN::Changes::Markdown::Role::Filter;
7             $CPAN::Changes::Markdown::Role::Filter::VERSION = '1.000000';
8             # ABSTRACT: A text filter of some kind
9              
10             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
11              
12 8     8   1736 use Role::Tiny qw( requires );
  8         4627  
  8         53  
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31             requires 'process';
32              
33             1;
34              
35             __END__