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.py26
1 files changed, 25 insertions, 1 deletions
diff --git a/tests/test_mdl_style.py b/tests/test_mdl_style.py
index 4dca694..21463fc 100644
--- a/tests/test_mdl_style.py
+++ b/tests/test_mdl_style.py
@@ -42,12 +42,36 @@ class TestLSRendererIL(object):
d_expected = _get_data('autolink_00-expected.md')
assert_equals(self.md(d), d_expected)
-
def test_link_footnote_to_inline_style_conversion_00(self):
d = _get_data('inline_link_style_00.md')
expected_result = _get_data('inline_link_style_00-expected.md')
assert_equal(self.md(d), expected_result)
+ def test_renderer_does_not_parse_link_breaks(self):
+ d = _get_data('does_not_parse_link_breaks_00.md')
+ #print('${}$'.format(self.md(d)))
+ assert_equal(self.md(d), d)
+
+ def test_renderer_does_not_parse_headers(self):
+ d = _get_data('does_not_parse_headers_00.md')
+ assert_equal(self.md(d), d)
+
+ def test_renderer_does_not_parse_blockquotes(self):
+ d = _get_data('does_not_parse_blockquotes_00.md')
+ assert_equal(self.md(d), d)
+
+ def test_renderer_does_not_parse_lists(self):
+ d = _get_data('does_not_parse_lists_00.md')
+ assert_equal(self.md(d), d)
+
+ def test_renderer_does_not_parse_codeblocks(self):
+ d = _get_data('does_not_parse_codeblocks_00.md')
+ assert_equal(self.md(d), d)
+
+ def test_renderer_does_not_parse_hrules(self):
+ d = _get_data('does_not_parse_hrules_00.md')
+ assert_equal(self.md(d), d)
+
def teardown(self):
pass