]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/linkify.t
linkify: support proto://hostname without trailing slash
[public-inbox.git] / t / linkify.t
index a55ed22a19118d686bbde4c48e7abf4494c9b038..f0b3a6d0b34bdb438a0fc940a9bbb3da2bbce87b 100644 (file)
@@ -14,6 +14,15 @@ use PublicInbox::Linkify;
        is($s, qq(<a\nhref="$u">$u</a>.), 'trailing period not in URL');
 }
 
+{
+       my $l = PublicInbox::Linkify->new;
+       my $u = 'http://i-forgot-trailing-slash.example.com';
+       my $s = $u;
+       $s = $l->linkify_1($s);
+       $s = $l->linkify_2($s);
+       is($s, qq(<a\nhref="$u">$u</a>), 'missing trailing slash OK');
+}
+
 # handle URLs in parenthesized statements
 {
        my $l = PublicInbox::Linkify->new;