summaryrefslogtreecommitdiff
path: root/ext/db/tests/002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/db/tests/002.phpt')
-rw-r--r--ext/db/tests/002.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/db/tests/002.phpt b/ext/db/tests/002.phpt
deleted file mode 100644
index d0bc710f08..0000000000
--- a/ext/db/tests/002.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-DBM Insert/Fetch Test
---SKIPIF--
-<?php if (!extension_loaded("db")) print "skip"; ?>
---POST--
---GET--
---FILE--
-<?php
- dbmopen("./test.dbm","n");
- dbminsert("./test.dbm","key1","This is a test insert");
- $a = dbmfetch("./test.dbm","key1");
- dbmclose("./test.dbm");
- echo $a
-?>
---EXPECT--
-This is a test insert