about summary refs log tree commit homepage
path: root/t/reply.t
diff options
context:
space:
mode:
Diffstat (limited to 't/reply.t')
-rw-r--r--t/reply.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/reply.t b/t/reply.t
index de31f880..cbcd7229 100644
--- a/t/reply.t
+++ b/t/reply.t
@@ -76,4 +76,9 @@ $exp = [
 is_deeply($arg, $exp, 'address obfuscation works');
 is($link, '', 'no mailto: link given');
 
+$ibx->{replyto} = ':none=dead list';
+$ibx->{obfuscate} = 1;
+($arg, $link) = PublicInbox::Reply::mailto_arg_link($ibx, $hdr);
+is($$arg, 'dead list', ':none= works');
+
 done_testing();