X-Git-Url: https://git.sommitrealweird.co.uk/rss2maildir.git/blobdiff_plain/0aa27bf39e80cd41081f4d5a49015e1c17ae9f68..64f951d0b32c3c210b71ef941e23b8dd98f13658:/tests/unittests/DefinitionListTests.py diff --git a/tests/unittests/DefinitionListTests.py b/tests/unittests/DefinitionListTests.py new file mode 100755 index 0000000..9058973 --- /dev/null +++ b/tests/unittests/DefinitionListTests.py @@ -0,0 +1,34 @@ +#!/usr/bin/python + +import unittest +import sys +import os + +class DefinitionListTests(unittest.TestCase): + def setUp(self): + self.inputpath = os.path.sep.join(os.path.dirname(os.path.realpath(__file__)).split(os.path.sep)[0:-1]) + + def testWellFormedDefinitionList(self): + try: + from rss2maildir import HTML2Text + except: + sys.path.append(os.path.sep.join(self.inputpath.split(os.path.sep)[0:-1])) + try: + from rss2maildir import HTML2Text + except: + self.assert_(False) + input_path = os.path.sep.join(os.path.dirname(os.path.realpath(__file__)).split(os.path.sep)[0:-1]) + input = open(os.path.join(input_path, "html", "definitionlist-wellformed.html")).read() + expectedoutput = open(os.path.join(input_path, "expected", "definitionlist-wellformed.txt")).read() + parser = HTML2Text() + parser.feed(input) + output = parser.gettext() + self.assertEqual(output, expectedoutput) + +def suite(): + suite = unittest.TestSuite() + suite.addTest(DefinitionListTests("testWellFormedDefinitionList")) + return suite + +if __name__ == "__main__": + unittest.main()