'''Test module to thest the xmllib module. Sjoerd Mullender ''' testdoc = """\ ]> Hello, world! """ import test_support import unittest import xmllib class XMLParserTestCase(unittest.TestCase): def test_simple(self): parser = xmllib.XMLParser() for c in testdoc: parser.feed(c) parser.close() test_support.run_unittest(XMLParserTestCase)