X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2Fplugins%2FPluginMarkdownTest.php;fp=tests%2Fplugins%2FPluginMarkdownTest.php;h=17ef228031331fba63fbb5ef567a3fc1fa06c04c;hb=de92edd6dd6c09625d0acda8009ebbed86b98f47;hp=4a67b2dc8566b86c6becd7e4feab9bcbf84e8fed;hpb=79a0dfe9cc658cbfafebac0aa9f1c2953faff777;p=github%2Fshaarli%2FShaarli.git diff --git a/tests/plugins/PluginMarkdownTest.php b/tests/plugins/PluginMarkdownTest.php index 4a67b2dc..17ef2280 100644 --- a/tests/plugins/PluginMarkdownTest.php +++ b/tests/plugins/PluginMarkdownTest.php @@ -185,17 +185,4 @@ class PluginMarkdownTest extends PHPUnit_Framework_TestCase $data = process_markdown($md); $this->assertEquals($html, $data); } - - /** - * Test hashtag links processed with markdown. - */ - function testMarkdownHashtagLinks() - { - $md = file_get_contents('tests/plugins/resources/markdown.md'); - $md = format_description($md); - $html = file_get_contents('tests/plugins/resources/markdown.html'); - - $data = process_markdown($md); - $this->assertEquals($html, $data); - } }