[ZPT] CVS: Zope27/lib/python/TAL/tests - test_xmlparser.py:1.6.18.1
Fred L. Drake, Jr.
fdrake@acm.org
Thu, 22 Aug 2002 15:43:43 -0400
Update of /cvs-repository/Zope27/lib/python/TAL/tests
In directory cvs.zope.org:/tmp/cvs-serv30709
Modified Files:
Tag: Zope-2_7-development-branch
test_xmlparser.py
Log Message:
Renamed test with misleading name.
Disabled tests that's probably broken during investigation.
=== Zope27/lib/python/TAL/tests/test_xmlparser.py 1.6 => 1.6.18.1 ===
--- Zope27/lib/python/TAL/tests/test_xmlparser.py:1.6 Tue Apr 16 13:49:39 2002
+++ Zope27/lib/python/TAL/tests/test_xmlparser.py Thu Aug 22 15:43:43 2002
@@ -106,14 +106,14 @@
parser.parseString(source)
self.assertRaises(XMLParser.XMLParseError, parse)
- def check_processing_instruction_only(self):
+ def check_processing_instruction_plus(self):
self._run_check("<?processing instruction?><a/>", [
("pi", "processing", "instruction"),
("starttag", "a", []),
("endtag", "a"),
])
- def check_simple_html(self):
+ def _check_simple_html(self):
self._run_check("""\
<?xml version='1.0' encoding='iso-8859-1'?>
<!DOCTYPE html PUBLIC 'foo' 'bar'>