File Coverage

blib/lib/Text/Pipe/Encoding/Base64/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   3929 use 5.008;
  1         5  
  1         41  
2 1     1   4 use strict;
  1         2  
  1         29  
3 1     1   5 use warnings;
  1         2  
  1         51  
4              
5             package Text::Pipe::Encoding::Base64::Decode;
6             BEGIN {
7 1     1   19 $Text::Pipe::Encoding::Base64::Decode::VERSION = '1.101700';
8             }
9             # ABSTRACT: Text pipe that can decode base64 strings
10 1     1   10 use MIME::Base64 3.09;
  1         17  
  1         60  
11 1     1   5 use parent qw(Text::Pipe::Encoding);
  1         2  
  1         5  
12              
13             sub filter_single {
14 269     269 1 157403 my ($self, $input) = @_;
15 269         1901 decode_base64($input);
16             }
17             1;
18              
19              
20             __END__