diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-04-20 02:15:26 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-04-20 02:15:26 (GMT) |
commit | 32a23c36b44b080973d774064da7718f31bca193 (patch) | |
tree | 9a4d73a7d5cba64de196f828aaeaaee93e7b6100 /Lib/test/test_sundry.py | |
parent | f097f175dd3385e6e43842680932b32cbc50365d (diff) | |
download | cpython-32a23c36b44b080973d774064da7718f31bca193.zip cpython-32a23c36b44b080973d774064da7718f31bca193.tar.gz cpython-32a23c36b44b080973d774064da7718f31bca193.tar.bz2 |
#9607: Add tests for the keyword module.
Based on the testing ideas in a patch written by Greg Malcolm.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r-- | Lib/test/test_sundry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index 84fb0db..f171d6f 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -7,7 +7,7 @@ import unittest class TestUntestedModules(unittest.TestCase): def test_untested_modules_can_be_imported(self): untested = ('bdb', 'encodings', 'formatter', 'imghdr', - 'keyword', 'macurl2path', 'nturl2path', 'tabnanny') + 'macurl2path', 'nturl2path', 'tabnanny') with support.check_warnings(quiet=True): for name in untested: try: |