File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -258,12 +258,14 @@ def test_github_issue_55():
258258 'return configs;\n }\n }</pre>' )
259259 assert result == expect
260260
261- def test_issue_56 ():
261+ def test_github_issue_56 ():
262+ """Empty description lists throw error"""
262263 result = textile .textile ("- :=\n -" )
263264 expect = '<dl>\n </dl>'
264265 assert result == expect
265266
266- def test_github_issue_57 ():
267+ def test_github_pull_61 ():
268+ """Fixed code block multiline encoding on quotes/span"""
267269 input = '''bc.. This is some TEXT inside a "Code BLOCK"
268270
269271{
@@ -297,7 +299,9 @@ def test_github_issue_57():
297299 result = t .parse (input )
298300 assert result == expect
299301
300- def test_issue_58 ():
302+ def test_github_pull_62 ():
303+ """Fix for paragraph multiline, only last paragraph is rendered
304+ correctly"""
301305 input = '''p.. First one 'is'
302306
303307ESCAPED "bad"
@@ -337,7 +341,8 @@ def test_issue_58():
337341 result = t .parse (input )
338342 assert result == expect
339343
340- def test_issue_59 ():
344+ def test_github_pull_63 ():
345+ """Forgot to set multiline_para to False"""
341346 input = '''p.. First one 'is'
342347
343348ESCAPED "bad"
You can’t perform that action at this time.
0 commit comments