about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/linkify.t9
1 files changed, 0 insertions, 9 deletions
diff --git a/t/linkify.t b/t/linkify.t
index a794c785..49cbbd64 100644
--- a/t/linkify.t
+++ b/t/linkify.t
@@ -57,13 +57,4 @@ use PublicInbox::Linkify;
         is($s, qq(hello <a\nhref="$u">$u</a> world), "root + fragment");
 }
 
-{
-        my $l = PublicInbox::Linkify->new;
-        my $u = 'http://example.com/';
-        my $s = "[markdown]($u)";
-        $s = $l->linkify_1($s);
-        $s = $l->linkify_2($s);
-        is($s, qq![markdown](<a\nhref="$u">$u</a>)!, 'markdown compatible');
-}
-
 done_testing();