Backport test from #11926.

This commit is contained in:
Ezio Melotti 2011-04-28 07:59:33 +03:00
parent bd0933a687
commit bdfa2e69e2
1 changed files with 9 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import subprocess
import re
import pydoc
import inspect
import keyword
import unittest
import xml.etree
import test.test_support
@ -351,9 +352,16 @@ class TestDescriptions(unittest.TestCase):
self.assertIn('_asdict', helptext)
class TestHelper(unittest.TestCase):
def test_keywords(self):
self.assertEqual(sorted(pydoc.Helper.keywords),
sorted(keyword.kwlist))
def test_main():
test.test_support.run_unittest(PyDocDocTest,
TestDescriptions)
TestDescriptions,
TestHelper)
if __name__ == "__main__":
test_main()