diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-03-18 04:18:12 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-03-18 04:18:12 (GMT) |
commit | a846f5ace80977f922e8295441afc668910fc894 (patch) | |
tree | b45f7a564a9900c02bc7cfd02c9e855dd98ac6b6 /Lib | |
parent | dd246171e483afa21f12e2a961a461e0d5119ea3 (diff) | |
download | cpython-a846f5ace80977f922e8295441afc668910fc894.zip cpython-a846f5ace80977f922e8295441afc668910fc894.tar.gz cpython-a846f5ace80977f922e8295441afc668910fc894.tar.bz2 |
#17448: Make test_sax skip if there are no xml parsers.
Patch by Rafael Santos.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_sax.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_sax.py b/Lib/test/test_sax.py index bfa7d72..3efd972 100644 --- a/Lib/test/test_sax.py +++ b/Lib/test/test_sax.py @@ -3,11 +3,12 @@ from xml.sax import make_parser, ContentHandler, \ SAXException, SAXReaderNotAvailable, SAXParseException +import unittest try: make_parser() except SAXReaderNotAvailable: # don't try to test this module if we cannot create a parser - raise ImportError("no XML parsers available") + raise unittest.SkipTest("no XML parsers available") from xml.sax.saxutils import XMLGenerator, escape, unescape, quoteattr, \ XMLFilterBase from xml.sax.expatreader import create_parser @@ -18,7 +19,6 @@ import os.path import shutil from test import support from test.support import findfile, run_unittest -import unittest TEST_XMLFILE = findfile("test.xml", subdir="xmltestdata") TEST_XMLFILE_OUT = findfile("test.xml.out", subdir="xmltestdata") |