summaryrefslogtreecommitdiffstats
path: root/tests/test_mdl_style.py
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2017-03-04 07:54:26 +0000
committerrsiddharth <s@ricketyspace.net>2017-03-04 07:54:26 +0000
commitaab16fc524986e0c70afb2d5b8ddbf5fc79e1e0b (patch)
tree47d3116863e91ea2bd3e5fa2cc91ee4a93c52fd8 /tests/test_mdl_style.py
parent6fbea4b886aefcc6830c7abe9dcda2f99a200674 (diff)
tests: Update `test_mdl_style.TestLSRendererIL` class.
* tests/data/inline_link_style_01-expected.md: New file. * tests/data/inline_link_style_01.md: New file. * tests/test_mdl_style.py (TestLSRendererIL.test_link_footnote_to_inline_style_conversion_01): Add method.
Diffstat (limited to 'tests/test_mdl_style.py')
-rw-r--r--tests/test_mdl_style.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_mdl_style.py b/tests/test_mdl_style.py
index ce35c03..dd2a737 100644
--- a/tests/test_mdl_style.py
+++ b/tests/test_mdl_style.py
@@ -47,6 +47,11 @@ class TestLSRendererIL(object):
expected_result = _get_data('inline_link_style_00-expected.md')
assert_equal(self.md(d), expected_result)
+ def test_link_footnote_to_inline_style_conversion_01(self):
+ d = _get_data('inline_link_style_01.md')
+ expected_result = _get_data('inline_link_style_01-expected.md')
+ assert_equal(self.md(d), expected_result)
+
def test_renderer_parses_images_00(self):
d = _get_data('inline_parses_images_00.md')
expected_result = _get_data('inline_parses_images_00-expected.md')