From: Fred Drake Date: Tue, 22 May 2001 20:22:06 +0000 (+0000) Subject: Simple conversion to PyUnit -- this test really needs more work! X-Git-Tag: v2.2a3~1698 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=babd7378a35860136e673e92aa4f3e2578473ecb;p=python Simple conversion to PyUnit -- this test really needs more work! --- diff --git a/Lib/test/test_xmllib.py b/Lib/test/test_xmllib.py index 62803b5869..a1c5057e77 100644 --- a/Lib/test/test_xmllib.py +++ b/Lib/test/test_xmllib.py @@ -2,24 +2,29 @@ Sjoerd Mullender ''' -from test_support import verbose - testdoc = """\ + ]> Hello, world! """ +import test_support +import unittest import xmllib -if verbose: - parser = xmllib.TestXMLParser() -else: - parser = xmllib.XMLParser() -for c in testdoc: - parser.feed(c) -parser.close() + +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)