File Coverage

lib/CPAN/Changes/Markdown/Filter/Passthrough.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 19 89.4


line stmt bran cond sub pod time code
1 1     1   722 use 5.006; # our
  1         2  
  1         33  
2 1     1   5 use strict;
  1         1  
  1         28  
3 1     1   3 use warnings;
  1         1  
  1         68  
4              
5             package CPAN::Changes::Markdown::Filter::Passthrough;
6              
7             # ABSTRACT: A Filter drop-in that doesn't process anything.
8              
9             our $VERSION = '1.000001';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31              
32              
33              
34 1     1   462 use Moo qw( with );
  1         11067  
  1         5  
35              
36             with 'CPAN::Changes::Markdown::Role::Filter';
37              
38              
39              
40              
41              
42             ## no critic (RequireArgUnpacking)
43              
44             sub process {
45 0     0 1   return $_[1];
46             }
47              
48             1;
49              
50             __END__