mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Added a test script for dbmmodule.c and added it to testall.py and
updated testall.out
This commit is contained in:
parent
3ac30af867
commit
16f9fd2bcf
3 changed files with 31 additions and 2 deletions
29
Lib/test/test_dbm.py
Executable file
29
Lib/test/test_dbm.py
Executable file
|
@ -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
|
|
@ -179,5 +179,5 @@ MD5 ("12345678901234567890123456789012345678901234567890123456789012345678901234
|
||||||
test_cmath
|
test_cmath
|
||||||
test_crypt
|
test_crypt
|
||||||
Test encryption: abeTm2pJKypwA
|
Test encryption: abeTm2pJKypwA
|
||||||
test_new
|
test_dbm
|
||||||
Passed all tests.
|
Passed all tests.
|
||||||
|
|
|
@ -12,7 +12,7 @@ import test_grammar
|
||||||
for t in ['test_opcodes', 'test_operations', 'test_builtin',
|
for t in ['test_opcodes', 'test_operations', 'test_builtin',
|
||||||
'test_exceptions', 'test_types', 'test_math', 'test_time',
|
'test_exceptions', 'test_types', 'test_math', 'test_time',
|
||||||
'test_array', 'test_strop', 'test_md5', 'test_cmath',
|
'test_array', 'test_strop', 'test_md5', 'test_cmath',
|
||||||
'test_crypt',
|
'test_crypt', 'test_dbm',
|
||||||
]:
|
]:
|
||||||
print t
|
print t
|
||||||
unload(t)
|
unload(t)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue