From 5fc1441fe7935af68f4537eabea6dbba158c9e39 Mon Sep 17 00:00:00 2001 From: Viktor Hozhyi Date: Sat, 4 Sep 2021 20:51:08 +0300 Subject: [PATCH] Added appropriate test --- tests/test_lists.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/test_lists.py b/tests/test_lists.py index 08c82c7..64158c6 100644 --- a/tests/test_lists.py +++ b/tests/test_lists.py @@ -51,6 +51,14 @@ def test_nested_ols(): def test_ul(): assert md('') == '* a\n* b\n' + assert md("""""") == '* a\n* b\n* c\n' def test_inline_ul():