Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e9dad002
Commit
e9dad002
authored
Jun 25, 2002
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add convenience module to run all the XML tests.
parent
a2ec4a0c
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
395 additions
and
0 deletions
+395
-0
Lib/test/output/xmltests
Lib/test/output/xmltests
+379
-0
Lib/test/xmltests.py
Lib/test/xmltests.py
+16
-0
No files found.
Lib/test/output/xmltests
0 → 100644
View file @
e9dad002
This diff is collapsed.
Click to expand it.
Lib/test/xmltests.py
0 → 100644
View file @
e9dad002
# 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"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment