Kaydet (Commit) 867de944 authored tarafından Fred Drake's avatar Fred Drake

Add convenience module to run all the XML tests.

üst c5e2792a
This diff is collapsed.
# Convenience test module to run all of the XML-related tests in the
# standard library.
import sys
def runtest(name):
__import__(name)
module = sys.modules[name]
if hasattr(module, "test_main"):
module.test_main()
runtest("test.test_minidom")
runtest("test.test_pyexpat")
runtest("test.test_sax")
runtest("test.test_xmllib")
runtest("test.test_xmlrpc")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment