#3929: dbm.open() would try to raise a tuple. This does not work anymore with python 3.0.

Reviewed by Georg Brandl.
This commit is contained in:
Amaury Forgeot d'Arc 2008-09-25 22:27:43 +00:00
parent 7de5f29972
commit b5cf301b8e
3 changed files with 11 additions and 4 deletions

View file

@ -57,6 +57,9 @@ class AnyDBMTestCase(unittest.TestCase):
def test_error(self):
self.assert_(issubclass(self.module.error, IOError))
def test_anydbm_not_existing(self):
self.assertRaises(dbm.error, dbm.open, _fname)
def test_anydbm_creation(self):
f = dbm.open(_fname, 'c')
self.assertEqual(list(f.keys()), [])