summaryrefslogtreecommitdiffstats
path: root/tests/test_md_tw.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_md_tw.py')
-rw-r--r--tests/test_md_tw.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_md_tw.py b/tests/test_md_tw.py
index f2f5fd2..34fe766 100644
--- a/tests/test_md_tw.py
+++ b/tests/test_md_tw.py
@@ -485,7 +485,6 @@ class TestTWBlockLexer(object):
def test_parse_def_footnotes(self):
tokens = self._parse('blexer-footnotes.md')
-
def process(tokens):
token = tokens.pop(0)
while token:
@@ -829,6 +828,11 @@ class TestTWRenderer(object):
expected_txt = self._get('renderer-def-links-w.md')
self._validate(txt, expected_txt)
+ def test_render_footnote_item(self):
+ txt = self._md('renderer-footnotes.md')
+ expected_txt = self._get('renderer-footnotes-w.md')
+ self._validate(txt, expected_txt)
+
def teardown(self):
pass