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

(cherry picked from commit 3fe33043ee)

Co-authored-by: xdegaye <xdegaye@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-03-18 13:25:15 -07:00 committed by GitHub
parent a90df5085b
commit fdd8e8b4ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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.