]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/hval.t
mbox: support inline filename via Content-Disposition header
[public-inbox.git] / t / hval.t
index a3712666d617511a5fc8fcc2b376244fc38b1014..2af4d2af5c8fc7119b25249f61ee6376efe1f68c 100644 (file)
--- a/t/hval.t
+++ b/t/hval.t
@@ -32,4 +32,14 @@ EOF
 
 is($html, $exp, 'only obfuscated relevant addresses');
 
+is('foo-bar', PublicInbox::Hval::to_filename('foo bar  '),
+       'to_filename has no trailing -');
+
+is('foo-bar', PublicInbox::Hval::to_filename("foo   bar\nanother line\n"),
+       'to_filename has no repeated -, and nothing past LF');
+
+is('foo.bar', PublicInbox::Hval::to_filename("foo....bar"),
+       'to_filename squeezes -');
+
+
 done_testing();