aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/plugins/PluginMarkdownTest.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/plugins/PluginMarkdownTest.php b/tests/plugins/PluginMarkdownTest.php
index fa7e1d52..67bf8968 100644
--- a/tests/plugins/PluginMarkdownTest.php
+++ b/tests/plugins/PluginMarkdownTest.php
@@ -149,4 +149,22 @@ class PluginMarkdownTest extends PHPUnit_Framework_TestCase
149 $data = hook_markdown_render_daily($data); 149 $data = hook_markdown_render_daily($data);
150 $this->assertEquals($str, $data['cols'][0][0]['formatedDescription']); 150 $this->assertEquals($str, $data['cols'][0][0]['formatedDescription']);
151 } 151 }
152
153 /**
154 * Make sure that the HTML tags are escaped.
155 */
156 public function testMarkdownWithHtmlEscape()
157 {
158 $md = '**strong** <strong>strong</strong>';
159 $html = '<div class="markdown"><p><strong>strong</strong> &lt;strong&gt;strong&lt;/strong&gt;</p></div>';
160 $data = array(
161 'links' => array(
162 0 => array(
163 'description' => $md,
164 ),
165 ),
166 );
167 $data = hook_markdown_render_linklist($data);
168 $this->assertEquals($html, $data['links'][0]['description']);
169 }
152} 170}