append(): Fixing the test for convertability after consultation with
[python/dscho.git] / Lib / test / xmltests.py
blob7963035be1d6bbdd7297c42f11561f1183a146a4
1 # Convenience test module to run all of the XML-related tests in the
2 # standard library.
4 import sys
5 import test.test_support
7 test.test_support.verbose = 0
9 def runtest(name):
10 __import__(name)
11 module = sys.modules[name]
12 if hasattr(module, "test_main"):
13 module.test_main()
15 runtest("test.test_minidom")
16 runtest("test.test_pyexpat")
17 runtest("test.test_sax")
18 runtest("test.test_xmllib")
19 runtest("test.test_xmlrpc")