#9607: Add tests for the keyword module.

Based on the testing ideas in a patch written by Greg Malcolm.
This commit is contained in:
R David Murray 2013-04-19 22:15:26 -04:00
parent f097f175dd
commit 32a23c36b4
3 changed files with 136 additions and 1 deletions

View file

@ -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: