summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sgmllib.py
Commit message (Collapse)AuthorAgeFilesLines
* Add regression test for a bug found in the version of the markupbaseFred Drake2002-09-251-0/+6
| | | | | | module used in the Zope TAL implementation. The bug was already fixed in the Python standard library, but the regression test would be good to keep around.
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
| | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
* Added several new tests to check the behavior with respect to doctypeFred Drake2001-09-241-6/+77
| | | | | | | declarations and weird markup that we used to accept & ignore that recent versions raised an exception for; the original behavior has been restored and augmented (the user can decide what to do if they care; the default is to ignore it as done in early versions).
* Add a unit test for sgmllib (needs work, but has already caught problems).Fred Drake2001-07-161-0/+243
Based on the test for the HTMLParser module.