File Coverage

blib/lib/Text/Pipe/Encoding/QuotedPrint/Decode.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 1 1 100.0
total 26 26 100.0


line stmt bran cond sub pod time code
1 1     1   4033 use 5.008;
  1         6  
  1         43  
2 1     1   5 use strict;
  1         2  
  1         25  
3 1     1   4 use warnings;
  1         1  
  1         43  
4              
5             package Text::Pipe::Encoding::QuotedPrint::Decode;
6             BEGIN {
7 1     1   21 $Text::Pipe::Encoding::QuotedPrint::Decode::VERSION = '1.101700';
8             }
9             # ABSTRACT: Text pipe that can decode quoted-printable strings
10 1     1   5 use MIME::QuotedPrint 3.09;
  1         18  
  1         57  
11 1     1   5 use parent qw(Text::Pipe::Encoding);
  1         2  
  1         6  
12              
13             sub filter_single {
14 42     42 1 24786 my ($self, $input) = @_;
15 42         406 decode_qp($input);
16             }
17             1;
18              
19              
20             __END__