about summary refs log tree commit homepage
path: root/t/watch_nntp.t
diff options
context:
space:
mode:
Diffstat (limited to 't/watch_nntp.t')
-rw-r--r--t/watch_nntp.t17
1 files changed, 0 insertions, 17 deletions
diff --git a/t/watch_nntp.t b/t/watch_nntp.t
deleted file mode 100644
index ce1a3153..00000000
--- a/t/watch_nntp.t
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright (C) 2020 all contributors <meta@public-inbox.org>
-# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
-use strict;
-use Test::More;
-use PublicInbox::Config;
-# see t/nntpd*.t for tests against a live NNTP server
-
-use_ok 'PublicInbox::Watch';
-my $nntp_url = \&PublicInbox::Watch::nntp_url;
-is('news://example.com/inbox.foo',
-        $nntp_url->('NEWS://examplE.com/inbox.foo'), 'lowercased');
-is('nntps://example.com/inbox.foo',
-        $nntp_url->('nntps://example.com/inbox.foo'), 'nntps:// accepted');
-is('nntps://example.com/inbox.foo',
-        $nntp_url->('SNEWS://example.com/inbox.foo'), 'snews => nntps');
-
-done_testing;