diff options
Diffstat (limited to 'ext/pdo_sqlite/tests/pdo_003.phpt')
-rwxr-xr-x | ext/pdo_sqlite/tests/pdo_003.phpt | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/ext/pdo_sqlite/tests/pdo_003.phpt b/ext/pdo_sqlite/tests/pdo_003.phpt deleted file mode 100755 index ebdefdc947..0000000000 --- a/ext/pdo_sqlite/tests/pdo_003.phpt +++ /dev/null @@ -1,53 +0,0 @@ ---TEST-- -PDO_SQLite: PDO_FETCH_BOTH ---SKIPIF-- -<?php # vim:ft=php -require_once('skipif.inc'); ?> ---FILE-- -<?php - -require_once('connection.inc'); -require_once('prepare.inc'); - -require_once($PDO_TESTS . 'pdo_003.inc'); - -?> -===DONE=== -<?php exit(0); ?> ---EXPECT-- -array(3) { - [0]=> - array(4) { - ["id"]=> - string(1) "1" - [0]=> - string(1) "1" - ["val"]=> - string(1) "A" - [1]=> - string(1) "A" - } - [1]=> - array(4) { - ["id"]=> - string(1) "2" - [0]=> - string(1) "2" - ["val"]=> - string(1) "B" - [1]=> - string(1) "B" - } - [2]=> - array(4) { - ["id"]=> - string(1) "3" - [0]=> - string(1) "3" - ["val"]=> - string(1) "C" - [1]=> - string(1) "C" - } -} -===DONE=== |