]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/eml.t
fetch: support running as root
[public-inbox.git] / t / eml.t
diff --git a/t/eml.t b/t/eml.t
index 4d1c1216f7c9a611ab0b4b3ebaa0b55aacf90f2f..0cf48f225a45c50d0bb70e10acd8274525240c08 100644 (file)
--- a/t/eml.t
+++ b/t/eml.t
@@ -1,5 +1,5 @@
 #!perl -w
-# Copyright (C) 2020 all contributors <meta@public-inbox.org>
+# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 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) {