]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/hval.t
doc/design_www: adjust some wording and URLs around CSS
[public-inbox.git] / t / hval.t
index a3712666d617511a5fc8fcc2b376244fc38b1014..7915f4c9aa6ce744c33c71e8282053b84bd3fe11 100644 (file)
--- a/t/hval.t
+++ b/t/hval.t
@@ -18,6 +18,7 @@ hello@example.com
 meta@public-inbox.org
 test@public-inbox.org
 test@a.b.c.org
+te.st@example.org
 EOF
 
 PublicInbox::Hval::obfuscate_addrs($ibx, $html);
@@ -28,8 +29,19 @@ hello@example.com
 meta@public-inbox.org
 test@public-inbox•org
 test@a•b.c.org
+te.st@example•org
 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();