From 5f9243d91d1484c0d0d6777cc408150fda6e2f94 Mon Sep 17 00:00:00 2001 From: AlexVonB Date: Thu, 4 Jul 2019 16:32:21 +0200 Subject: [PATCH] added tests for matthewwithanm#11 --- tests/test_conversions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_conversions.py b/tests/test_conversions.py index af4b54f..dfc8d3c 100644 --- a/tests/test_conversions.py +++ b/tests/test_conversions.py @@ -103,6 +103,9 @@ def test_strong(): def test_ul(): assert md('') == '* a\n* b\n' + +def test_inline_ul(): + assert md('

foo

bar

') == 'foo \n* a\n* b\n\nbar' def test_nested_uls():