Skip to content

Commit 8a741f6

Browse files
committed
make sure test names match github issue/pull numbers.
1 parent a270669 commit 8a741f6

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

tests/test_github_issues.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff 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
303307
ESCAPED "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
343348
ESCAPED "bad"

0 commit comments

Comments
 (0)