summaryrefslogtreecommitdiff
path: root/ext/MIME/Base64/t/quoted-print.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/MIME/Base64/t/quoted-print.t')
-rw-r--r--ext/MIME/Base64/t/quoted-print.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/MIME/Base64/t/quoted-print.t b/ext/MIME/Base64/t/quoted-print.t
index 1a7f9e4550..97e525ec66 100644
--- a/ext/MIME/Base64/t/quoted-print.t
+++ b/ext/MIME/Base64/t/quoted-print.t
@@ -71,7 +71,7 @@ y. -- H. L. Mencken"],
# line width
);
-$notests = @tests + 2;
+$notests = @tests + 3;
print "1..$notests\n";
$testno = 0;
@@ -111,3 +111,5 @@ print "not " unless decode_qp("foo \r\n\r\nfoo =\r\n\r\nfoo=20\r\n\r\n") eq
"foo\r\n\r\nfoo \r\nfoo \r\n\r\n";
$testno++; print "ok $testno\n";
+print "not " if eval { encode_qp("XXX \x{100}") } || $@ !~ /^The Quoted-Printable encoding is only defined for bytes/;
+$testno++; print "ok $testno\n";