File Coverage

blib/lib/Text/Pipe/Encoding/QuotedPrint/Encode.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   1391 use 5.008;
  1         6  
  1         44  
2 1     1   6 use strict;
  1         2  
  1         44  
3 1     1   5 use warnings;
  1         2  
  1         69  
4              
5             package Text::Pipe::Encoding::QuotedPrint::Encode;
6             BEGIN {
7 1     1   24 $Text::Pipe::Encoding::QuotedPrint::Encode::VERSION = '1.101700';
8             }
9             # ABSTRACT: Text pipe that can encode quoted-printable strings
10 1     1   1007 use MIME::QuotedPrint 3.09;
  1         2274  
  1         78  
11 1     1   7 use parent qw(Text::Pipe::Encoding);
  1         2  
  1         10  
12              
13             sub filter_single {
14 42     42 1 31324 my ($self, $input) = @_;
15 42         612 encode_qp($input);
16             }
17             1;
18              
19              
20             __END__