diff --git a/RIGS/test_unit.py b/RIGS/test_unit.py index 128fb3b8..5b22743f 100644 --- a/RIGS/test_unit.py +++ b/RIGS/test_unit.py @@ -210,3 +210,7 @@ which you wish to be displayed literally, ex.: \`foo\`, \*bar\*, etc. def test_nonetype(self): html = markdown_filter(None) self.assertIsNone(html) + + def test_linebreaks(self): + html = markdown_filter(self.markdown) + self.assertIn("Itemized lists
\nlook like", html)