[Zope-Checkins] CVS: Zope/lib/python/TAL/tests - test_xmlparser.py:1.4.32.2

Fred L. Drake, Jr. fdrake@acm.org
Sat, 24 Aug 2002 23:56:40 -0400


Update of /cvs-repository/Zope/lib/python/TAL/tests
In directory cvs.zope.org:/tmp/cvs-serv14870

Modified Files:
      Tag: Zope-2_5-branch
	test_xmlparser.py 
Log Message:
Rename test to have a more meaningful name.
Disable test that demonstrates an Expat bug until the relevant
projects have been updated.


=== Zope/lib/python/TAL/tests/test_xmlparser.py 1.4.32.1 => 1.4.32.2 ===
--- Zope/lib/python/TAL/tests/test_xmlparser.py:1.4.32.1	Tue May 14 05:33:47 2002
+++ Zope/lib/python/TAL/tests/test_xmlparser.py	Sat Aug 24 23:56:39 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'>