[Zope3-checkins] CVS: Zope3/lib/python/Zope/TAL/tests - test_xmlparser.py:1.8

Fred L. Drake, Jr. fdrake@acm.org
Thu, 22 Aug 2002 15:42:21 -0400


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

Modified Files:
	test_xmlparser.py 
Log Message:
Renamed test with misleading name.
Disabled tests that's probably broken during investigation.


=== Zope3/lib/python/Zope/TAL/tests/test_xmlparser.py 1.7 => 1.8 ===
--- Zope3/lib/python/Zope/TAL/tests/test_xmlparser.py:1.7	Mon Jun 10 19:29:44 2002
+++ Zope3/lib/python/Zope/TAL/tests/test_xmlparser.py	Thu Aug 22 15:42:21 2002
@@ -116,14 +116,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'>