File Coverage

lib/CPAN/Changes/Markdown/Filter/Passthrough.pm
Criterion Covered Total %
statement 15 16 93.7
branch n/a
condition n/a
subroutine 5 6 83.3
pod 1 1 100.0
total 21 23 91.3


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