]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added a test script for dbmmodule.c and added it to testall.py and
authorRoger E. Masse <rmasse@newcnri.cnri.reston.va.us>
Tue, 10 Dec 1996 00:06:24 +0000 (00:06 +0000)
committerRoger E. Masse <rmasse@newcnri.cnri.reston.va.us>
Tue, 10 Dec 1996 00:06:24 +0000 (00:06 +0000)
updated testall.out

Lib/test/test_dbm.py [new file with mode: 0755]
Lib/test/testall.out
Lib/test/testall.py

diff --git a/Lib/test/test_dbm.py b/Lib/test/test_dbm.py
new file mode 100755 (executable)
index 0000000..be24c66
--- /dev/null
@@ -0,0 +1,29 @@
+#! /usr/bin/env python
+"""Test script for the dbm module
+   Roger E. Masse
+"""
+import dbm
+from dbm import error
+filename= '/tmp/delete_me'
+
+d = dbm.open(filename, 'c')
+d['a'] = 'b'
+d['12345678910'] = '019237410982340912840198242'
+d.keys()
+d.has_key('a')
+d.close()
+d = dbm.open(filename, 'r')
+d.close()
+d = dbm.open(filename, 'rw')
+d.close()
+d = dbm.open(filename, 'w')
+d.close()
+d = dbm.open(filename, 'n')
+d.close()
+
+try:
+    import os
+    os.unlink(filename + '.dir')
+    os.unlink(filename + '.pag')
+except:
+    pass
index 18a306eff6907e8e64b83ed261eaa4aae188a3ed..fe4813d63ce4064b4e0c8a715d9496b3d341f414 100644 (file)
@@ -179,5 +179,5 @@ MD5 ("12345678901234567890123456789012345678901234567890123456789012345678901234
 test_cmath
 test_crypt
 Test encryption:  abeTm2pJKypwA
-test_new
+test_dbm
 Passed all tests.
index 176be56c035bb043efdbc4db2ce3b77506915118..4bf0a662cb8e0f3e2c35fa882bd00f306c5ed51c 100644 (file)
@@ -12,7 +12,7 @@ import test_grammar
 for t in ['test_opcodes', 'test_operations', 'test_builtin',
          'test_exceptions', 'test_types', 'test_math', 'test_time',
          'test_array', 'test_strop', 'test_md5', 'test_cmath',
-         'test_crypt',
+         'test_crypt', 'test_dbm',
          ]:
     print t
     unload(t)