bpo-19417: Add test_bdb.py (GH-5217)

This commit is contained in:
xdegaye 2018-03-18 21:02:47 +01:00 committed by Mariatta
parent f64aae46da
commit 3fe33043ee
3 changed files with 1153 additions and 1 deletions

1151
Lib/test/test_bdb.py Normal file

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1 @@
Add test_bdb.py.