about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-12-06 23:15:02 +0000
committerEric Wong <e@80x24.org>2016-12-06 23:15:02 +0000
commit52e44dc8f9e01678f309818c8ca2bc65b8285738 (patch)
treeb971609ef6fd3665d7d68352600d22ffe5b05cf8 /t
parent130d0c4e33c5c73dc69e270fc698735d49e0f159 (diff)
downloadpublic-inbox-52e44dc8f9e01678f309818c8ca2bc65b8285738.tar.gz
This reverts commit 130d0c4e33c5c73dc69e270fc698735d49e0f159.
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();