diff options
Diffstat (limited to 'ext/pdo_sqlite/tests/pdo_019.phpt')
-rwxr-xr-x | ext/pdo_sqlite/tests/pdo_019.phpt | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/ext/pdo_sqlite/tests/pdo_019.phpt b/ext/pdo_sqlite/tests/pdo_019.phpt deleted file mode 100755 index 11255774b8..0000000000 --- a/ext/pdo_sqlite/tests/pdo_019.phpt +++ /dev/null @@ -1,52 +0,0 @@ ---TEST-- -PDO_SQLite: fetch() and while() ---SKIPIF-- -<?php # vim:ft=php -require_once('skipif.inc'); -?> ---FILE-- -<?php - -require_once('connection.inc'); -require_once('prepare.inc'); - -require_once($PDO_TESTS . 'pdo_019.inc'); - -?> -===DONE=== -<?php exit(0); ?> ---EXPECTF-- -===INIT=== -int(1) -int(1) -int(1) -int(1) -string(1) "4" -array(4) { - [0]=> - string(7) "String0" - [1]=> - string(7) "String1" - [2]=> - string(7) "String2" - [3]=> - string(7) "String3" -} -===WHILE=== -array(1) { - [0]=> - string(7) "String0" -} -array(1) { - [1]=> - string(7) "String1" -} -array(1) { - [2]=> - string(7) "String2" -} -array(1) { - [3]=> - string(7) "String3" -} -===DONE=== |