diff options
Diffstat (limited to 'source4/lib/tdb/python/tests/simple.py')
-rw-r--r-- | source4/lib/tdb/python/tests/simple.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/lib/tdb/python/tests/simple.py b/source4/lib/tdb/python/tests/simple.py index 4600f02f14..0e0ef0251e 100644 --- a/source4/lib/tdb/python/tests/simple.py +++ b/source4/lib/tdb/python/tests/simple.py @@ -10,6 +10,12 @@ import tdb from unittest import TestCase import os + +class OpenTdbTests(TestCase): + def test_nonexistant_read(self): + self.assertRaises(IOError, tdb.Tdb, "/some/nonexistant/file", 0, tdb.DEFAULT, os.O_RDWR) + + class SimpleTdbTests(TestCase): def setUp(self): super(SimpleTdbTests, self).setUp() |