diff --git a/exercises/practice/markdown/markdown_test.py b/exercises/practice/markdown/markdown_test.py index ad6d243a63..090991fb28 100644 --- a/exercises/practice/markdown/markdown_test.py +++ b/exercises/practice/markdown/markdown_test.py @@ -101,3 +101,9 @@ def test_unordered_lists_close_properly_with_preceding_and_following_lines(self) parse("# Start a list\n* Item 1\n* Item 2\nEnd a list"), "
End a list
", ) + + def test_two_unordered_lists_separated_properly(self): + self.assertEqual( + parse("# Start list 1\n* Item 1\nEnd list 1\n# Start list 2\n* Item 1\n* Item 2\nEnd list 2"), + "End list 1
End list 2
", + )