Last change
on this file since 10 was 2, checked in by Yuri Dario, 15 years ago |
Initial import for vendor code.
|
-
Property svn:eol-style
set to
native
|
File size:
497 bytes
|
Line | |
---|
1 | # Convenience test module to run all of the XML-related tests in the
|
---|
2 | # standard library.
|
---|
3 |
|
---|
4 | import sys
|
---|
5 | import test.test_support
|
---|
6 |
|
---|
7 | test.test_support.verbose = 0
|
---|
8 |
|
---|
9 | def runtest(name):
|
---|
10 | __import__(name)
|
---|
11 | module = sys.modules[name]
|
---|
12 | if hasattr(module, "test_main"):
|
---|
13 | module.test_main()
|
---|
14 |
|
---|
15 | runtest("test.test_minidom")
|
---|
16 | runtest("test.test_pyexpat")
|
---|
17 | runtest("test.test_sax")
|
---|
18 | runtest("test.test_xml_etree")
|
---|
19 | runtest("test.test_xml_etree_c")
|
---|
20 | runtest("test.test_xmllib")
|
---|
21 | runtest("test.test_xmlrpc")
|
---|
Note:
See
TracBrowser
for help on using the repository browser.