diff options
author | Marcus Boerger <helly@php.net> | 2002-11-07 23:03:58 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-11-07 23:03:58 +0000 |
commit | 78857eb9d4bc2876d3bca3695218a09a48f6644c (patch) | |
tree | f6cb80700f15a7cf0541d4c23d6d9a62d993ecb1 /ext | |
parent | 39876b881b7b916fd66577830cf529ca439ddaee (diff) | |
download | php-git-78857eb9d4bc2876d3bca3695218a09a48f6644c.tar.gz |
expand test: see if another insert fails
Diffstat (limited to 'ext')
-rw-r--r-- | ext/db/tests/003.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/db/tests/003.phpt b/ext/db/tests/003.phpt index d2351e24a5..6d3f7d3611 100644 --- a/ext/db/tests/003.phpt +++ b/ext/db/tests/003.phpt @@ -8,6 +8,7 @@ DBM Insert/Replace/Fetch Test if (dbmopen($db_file, "n")) { dbminsert($db_file, "key1", "This is a test insert"); dbmreplace($db_file, "key1", "This is the replacement text"); + @dbminsert($db_file, "key1", "This is another replacement text?"); $a = dbmfetch($db_file, "key1"); dbmclose($db_file); echo $a; |