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 | 769 | use strict; | |||
2 | 4 | ||||||
2 | 77 | ||||||
4 | 2 | 2 | 8 | use vars qw(@ISA @EXPORT $VERSION); | |||
2 | 2 | ||||||
2 | 174 | ||||||
5 | |||||||
6 | require Exporter; | ||||||
7 | @ISA = qw(Exporter); | ||||||
8 | @EXPORT = qw(encode_qp decode_qp); | ||||||
9 | |||||||
10 | $VERSION = "3.13"; | ||||||
11 | |||||||
12 | 2 | 2 | 432 | use MIME::Base64; # will load XS version of {en,de}code_qp() | |||
2 | 3 | ||||||
2 | 177 | ||||||
13 | |||||||
14 | *encode = \&encode_qp; | ||||||
15 | *decode = \&decode_qp; | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |