[ZPT] CVS: Zope/lib/python/TAL/tests - test_xmlparser.py:1.7

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


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

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


=== Zope/lib/python/TAL/tests/test_xmlparser.py 1.6 => 1.7 ===
--- Zope/lib/python/TAL/tests/test_xmlparser.py:1.6	Tue Apr 16 13:49:39 2002
+++ Zope/lib/python/TAL/tests/test_xmlparser.py	Thu Aug 22 15:43:08 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'>