summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/tests/pdo_004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_sqlite/tests/pdo_004.phpt')
-rwxr-xr-xext/pdo_sqlite/tests/pdo_004.phpt41
1 files changed, 0 insertions, 41 deletions
diff --git a/ext/pdo_sqlite/tests/pdo_004.phpt b/ext/pdo_sqlite/tests/pdo_004.phpt
deleted file mode 100755
index c22f400dec..0000000000
--- a/ext/pdo_sqlite/tests/pdo_004.phpt
+++ /dev/null
@@ -1,41 +0,0 @@
---TEST--
-PDO_SQLite: PDO_FETCH_OBJ
---SKIPIF--
-<?php # vim:ft=php
-require_once('skipif.inc'); ?>
---FILE--
-<?php
-
-require_once('connection.inc');
-require_once('prepare.inc');
-
-require_once($PDO_TESTS . 'pdo_004.inc');
-
-?>
-===DONE===
-<?php exit(0); ?>
---EXPECTF--
-array(3) {
- [0]=>
- object(stdClass)#%d (2) {
- ["id"]=>
- string(1) "1"
- ["val"]=>
- string(1) "A"
- }
- [1]=>
- object(stdClass)#%d (2) {
- ["id"]=>
- string(1) "2"
- ["val"]=>
- string(1) "B"
- }
- [2]=>
- object(stdClass)#%d (2) {
- ["id"]=>
- string(1) "3"
- ["val"]=>
- string(1) "C"
- }
-}
-===DONE===