summaryrefslogtreecommitdiffstats
path: root/tests/test_mdl_style.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_mdl_style.py')
-rw-r--r--tests/test_mdl_style.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_mdl_style.py b/tests/test_mdl_style.py
index 94cdd75..3171dc7 100644
--- a/tests/test_mdl_style.py
+++ b/tests/test_mdl_style.py
@@ -76,6 +76,14 @@ class TestLSRendererIL(object):
d = _get_data('does_not_parse_hrules_00.md')
assert_equal(self.md(d), d)
+ def test_renderer_does_not_parse_emphasis(self):
+ d = _get_data('does_not_parse_emphasis_00.md')
+ assert_equal(self.md(d), d)
+
+ def test_renderer_does_not_parse_code(self):
+ d = _get_data('does_not_parse_code_00.md')
+ assert_equal(self.md(d), d)
+
def teardown(self):
pass