From 198fdb6707f4bb8249da4ca1bf6b2bc65a3b1095 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Wed, 22 Feb 2017 03:53:20 +0000 Subject: tests: Update `test_mdl_style.TestLSRendererIL` class. * tests/data/does_not_parse_code_00.md: Add file. * tests/data/does_not_parse_emphasis_00.md: Add file. * tests/test_mdl_style.py (TestLSRendererIL.test_renderer_does_not_parse_emphasis) (TestLSRendererIL.test_renderer_does_not_parse_code): Add methods. --- tests/test_mdl_style.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/test_mdl_style.py') 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 -- cgit v1.2.3