]> granicus.if.org Git - python/commitdiff
Backport test from #11926.
authorEzio Melotti <ezio.melotti@gmail.com>
Thu, 28 Apr 2011 04:59:33 +0000 (07:59 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Thu, 28 Apr 2011 04:59:33 +0000 (07:59 +0300)
Lib/test/test_pydoc.py

index 2e67290d00ec41bd9b8332dd7abc81ef9e7696b3..85916932384bf197924b4632d8b58fd7a762c217 100644 (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()