blib/lib/MIME/QuotedPrint.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 9 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 12 | 12 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package MIME::QuotedPrint; | ||||||
2 | |||||||
3 | 2 | 2 | 941 | use strict; | |||
2 | 11 | ||||||
2 | 57 | ||||||
4 | 2 | 2 | 10 | use warnings; | |||
2 | 3 | ||||||
2 | 161 | ||||||
5 | |||||||
6 | require Exporter; | ||||||
7 | our @ISA = qw(Exporter); | ||||||
8 | our @EXPORT = qw(encode_qp decode_qp); | ||||||
9 | |||||||
10 | our $VERSION = '3.16'; | ||||||
11 | |||||||
12 | 2 | 2 | 413 | use MIME::Base64; # will load XS version of {en,de}code_qp() | |||
2 | 5 | ||||||
2 | 190 | ||||||
13 | |||||||
14 | *encode = \&encode_qp; | ||||||
15 | *decode = \&decode_qp; | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |