#17484: add tests for getpass.

Patch by Thomas Fenzl.
This commit is contained in:
R David Murray 2013-04-08 01:48:22 -04:00
parent 7efa3b8242
commit 319d58d599
3 changed files with 3 additions and 1 deletions

View file

@ -6,7 +6,7 @@ import unittest
class TestUntestedModules(unittest.TestCase):
def test_untested_modules_can_be_imported(self):
untested = ('bdb', 'encodings', 'formatter', 'getpass', 'imghdr',
untested = ('bdb', 'encodings', 'formatter', 'imghdr',
'keyword', 'macurl2path', 'nturl2path', 'tabnanny')
with support.check_warnings(quiet=True):
for name in untested: