cpython/Lib/test/test_xml_etree_c.py

40 lines
1023 B
Python
Raw Normal View History

# xml.etree test for cElementTree
2005-12-15 14:41:22 -04:00
from test import test_support
cET = test_support.import_module('xml.etree.cElementTree')
2005-12-15 14:41:22 -04:00
# cElementTree specific tests
2005-12-15 14:41:22 -04:00
def sanity():
"""
Import sanity.
>>> from xml.etree import cElementTree
2005-12-15 14:41:22 -04:00
"""
2005-12-15 14:41:22 -04:00
def test_main():
from test import test_xml_etree, test_xml_etree_c
# Run the tests specific to the C implementation
2005-12-15 14:41:22 -04:00
test_support.run_doctest(test_xml_etree_c, verbosity=True)
# Assign the C implementation before running the doctests
# Patch the __name__, to prevent confusion with the pure Python test
pyET = test_xml_etree.ET
py__name__ = test_xml_etree.__name__
test_xml_etree.ET = cET
if __name__ != '__main__':
test_xml_etree.__name__ = __name__
try:
# Run the same test suite as xml.etree.ElementTree
test_xml_etree.test_main(module_name='xml.etree.cElementTree')
finally:
test_xml_etree.ET = pyET
test_xml_etree.__name__ = py__name__
2005-12-15 14:41:22 -04:00
if __name__ == '__main__':
test_main()