From 9395bbbbeaa024bb827d555ab0ac9f6d47574fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Hanol?= Date: Thu, 12 Mar 2015 16:20:14 +0100 Subject: [PATCH] add test for fix in 9061c26e52e178448a15e9939c83aa8db043b1c7 --- test/javascripts/lib/markdown-test.js.es6 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/javascripts/lib/markdown-test.js.es6 b/test/javascripts/lib/markdown-test.js.es6 index a2bfb9faefa..6ae727c5504 100644 --- a/test/javascripts/lib/markdown-test.js.es6 +++ b/test/javascripts/lib/markdown-test.js.es6 @@ -526,3 +526,9 @@ test("censoring", function() { "

you are a ■■■■■■■! I love cheesewhiz. ■■■■.

", "it censors words even if previous partial matches exist."); }); + +test("code blocks/spans hoisting", function() { + cooked("```\n\n some code\n```", + "

some code

", + "it works when nesting standard markdown code blocks within a fenced code block"); +});