From 38ff334360057383b8d21a3155d1109ff4c59759 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Sat, 21 Mar 2009 08:52:21 -0400 Subject: Fixed a bug where Markdown choked on input of only whitespace. Added some tests. --- regression-tests.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'regression-tests.py') diff --git a/regression-tests.py b/regression-tests.py index 1b99ff9..7601061 100755 --- a/regression-tests.py +++ b/regression-tests.py @@ -12,6 +12,25 @@ from doctest import DocTestSuite import os import markdown +class TestMarkdown(unittest.TestCase): + """ Tests basics of the Markdown class. """ + + def setUp(self): + """ Create instance of Markdown. """ + self.md = markdown.Markdown() + + def testBlankInput(self): + """ Test blank input. """ + self.assertEqual(self.md.convert(''), '') + + def testWhitespaceOnly(self): + """ Test input of only whitespace. """ + self.assertEqual(self.md.convert(' '), '') + + def testSimpleInput(self): + """ Test simple input. """ + self.assertEqual(self.md.convert('foo'), '

foo

') + class TestBlockParser(unittest.TestCase): """ Tests of the BlockParser class. """ @@ -196,6 +215,7 @@ class TestOrderedDict(unittest.TestCase): def suite(): """ Build a test suite of the above tests and extension doctests. """ suite = unittest.TestSuite() + suite.addTest(unittest.makeSuite(TestMarkdown)) suite.addTest(unittest.makeSuite(TestBlockParser)) suite.addTest(unittest.makeSuite(TestBlockParserState)) suite.addTest(unittest.makeSuite(TestHtmlStash)) -- cgit v1.2.3