[Zope-Checkins] CVS: Zope/lib/python/StructuredText/tests - testStructuredText.py:1.14

Andreas Jung andreas@digicool.com
Mon, 25 Feb 2002 10:36:49 -0500


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

Modified Files:
	testStructuredText.py 
Log Message:
a string '_blabla_' at the end of line has not been recognized properly
as text to be represented as underline.

- updated tests and HTML references


=== Zope/lib/python/StructuredText/tests/testStructuredText.py 1.13 => 1.14 ===
         self._test("xx _this is html_ xx",
                    "xx <u>this is html</u> xx")
+
+    def testUnderline1(self):
+        """underline 1"""
+        self._test("xx _this is html_",
+                   "<u>this is html</u>")
         
     def testEmphasis(self):
         """ emphasis """