about summary refs log tree commit homepage
path: root/t/nntpd.t
diff options
context:
space:
mode:
Diffstat (limited to 't/nntpd.t')
-rw-r--r--t/nntpd.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/nntpd.t b/t/nntpd.t
index 0e59de07..1c5ae8d7 100644
--- a/t/nntpd.t
+++ b/t/nntpd.t
@@ -143,6 +143,11 @@ EOF
                 'got greeting');
         $s->autoflush(1);
 
+        syswrite($s, "CAPABILITIES\r\n");
+        $buf = read_til_dot($s);
+        like($buf, qr/\r\nVERSION 2\r\n/s, 'CAPABILITIES works');
+        unlike($buf, qr/STARTTLS/s, 'STARTTLS not advertised');
+
         syswrite($s, "NEWGROUPS 19990424 000000 GMT\r\n");
         $buf = read_til_dot($s);
         like($buf, qr/\A231 list of /, 'newgroups OK');