X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Feml.t;h=2d8993a51075f317ce11f5cc61012d55211663d6;hb=7eeeea81c74c7184984510892871fd79406c0393;hp=4d1c1216f7c9a611ab0b4b3ebaa0b55aacf90f2f;hpb=5c4874309c4dd7aa8b9acd6bb97bd512360ab08a;p=public-inbox.git diff --git a/t/eml.t b/t/eml.t index 4d1c1216..2d8993a5 100644 --- a/t/eml.t +++ b/t/eml.t @@ -1,5 +1,5 @@ #!perl -w -# Copyright (C) 2020 all contributors +# Copyright (C) 2020-2021 all contributors # License: AGPL-3.0+ use strict; use Test::More; @@ -26,6 +26,8 @@ sub mime_load ($) { is($str, "hi\n", '->new modified body like Email::Simple'); is($eml->body, "hi\n", '->body works'); is($eml->as_string, "a: b\n\nhi\n", '->as_string'); + my $empty = PublicInbox::Eml->new("\n\n"); + is($empty->as_string, "\n\n", 'empty message'); } for my $cls (@classes) { @@ -214,6 +216,17 @@ if ('one newline before headers') { is($eml->body, ""); } +if ('body only') { + my $str = <new($str); + is($eml->body, $str, 'body-only accepted'); +} + for my $cls (@classes) { # XXX: matching E::M, but not sure about this my $s = <