summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger E. Masse <rmasse@newcnri.cnri.reston.va.us>1996-12-10 00:06:24 +0000
committerRoger E. Masse <rmasse@newcnri.cnri.reston.va.us>1996-12-10 00:06:24 +0000
commit16f9fd2bcf5d0595c378addfec13ddfcea448b94 (patch)
treeefb9aa470ef73d94b809bdce2e178fdd39daf36f
parent3ac30af86738107f74b351fcc2414ff743b8de5f (diff)
downloadcpython-git-16f9fd2bcf5d0595c378addfec13ddfcea448b94.tar.gz
Added a test script for dbmmodule.c and added it to testall.py and
updated testall.out
-rwxr-xr-xLib/test/test_dbm.py29
-rw-r--r--Lib/test/testall.out2
-rw-r--r--Lib/test/testall.py2
3 files changed, 31 insertions, 2 deletions
diff --git a/Lib/test/test_dbm.py b/Lib/test/test_dbm.py
new file mode 100755
index 0000000000..be24c66fe4
--- /dev/null
+++ b/Lib/test/test_dbm.py
@@ -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
diff --git a/Lib/test/testall.out b/Lib/test/testall.out
index 18a306eff6..fe4813d63c 100644
--- a/Lib/test/testall.out
+++ b/Lib/test/testall.out
@@ -179,5 +179,5 @@ MD5 ("12345678901234567890123456789012345678901234567890123456789012345678901234
test_cmath
test_crypt
Test encryption: abeTm2pJKypwA
-test_new
+test_dbm
Passed all tests.
diff --git a/Lib/test/testall.py b/Lib/test/testall.py
index 176be56c03..4bf0a662cb 100644
--- a/Lib/test/testall.py
+++ b/Lib/test/testall.py
@@ -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)