summaryrefslogtreecommitdiffstats
path: root/tests/test_mdl_style.py
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2017-03-04 07:56:44 +0000
committerrsiddharth <s@ricketyspace.net>2017-03-04 07:56:44 +0000
commitc492802aacf8b59cc18cde1eb371561315ff791d (patch)
treeed178e66060b8376d70869db82049d7b40fa2808 /tests/test_mdl_style.py
parentaab16fc524986e0c70afb2d5b8ddbf5fc79e1e0b (diff)
tests: Update `test_mdl_style.TestLSRendererFN` class.
* tests/data/footnote_link_style_01-expected.md: New file. * tests/data/footnote_link_style_01.md: New file. * tests/test_mdl_style.py (TestLSRendererFN.test_link_inline_to_footnote_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 dd2a737..d752188 100644
--- a/tests/test_mdl_style.py
+++ b/tests/test_mdl_style.py
@@ -111,6 +111,11 @@ class TestLSRendererFN(object):
expected_result = _get_data('footnote_link_style_00-expected.md')
assert_equal(self.md(d), expected_result)
+ def test_link_inline_to_footnote_style_conversion_01(self):
+ d = _get_data('footnote_link_style_01.md')
+ expected_result = _get_data('footnote_link_style_01-expected.md')
+ assert_equal(self.md(d), expected_result)
+
def test_renderer_parses_images_00(self):
d = _get_data('footnote_parses_images_00.md')
expected_result = _get_data('footnote_parses_images_00-expected.md')