summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/pdo_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo/tests/pdo_001.phpt')
-rw-r--r--ext/pdo/tests/pdo_001.phpt49
1 files changed, 0 insertions, 49 deletions
diff --git a/ext/pdo/tests/pdo_001.phpt b/ext/pdo/tests/pdo_001.phpt
deleted file mode 100644
index 6740411f77..0000000000
--- a/ext/pdo/tests/pdo_001.phpt
+++ /dev/null
@@ -1,49 +0,0 @@
---TEST--
-PDO Common: PDO_FETCH_ASSOC
---SKIPIF--
-<?php # vim:ft=php
-if (!extension_loaded('pdo')) die('skip');
-$dir = getenv('REDIR_TEST_DIR');
-if (false == $dir) die('skip no driver');
-require_once $dir . 'pdo_test.inc';
-PDOTest::skip();
-?>
---FILE--
-<?php
-require getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
-$db = PDOTest::factory();
-
-$db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
-$db->exec("INSERT INTO test VALUES(1, 'A')");
-$db->exec("INSERT INTO test VALUES(2, 'B')");
-$db->exec("INSERT INTO test VALUES(3, 'C')");
-
-$stmt = $db->prepare('SELECT * from test');
-$stmt->execute();
-
-var_dump($stmt->fetchAll(PDO_FETCH_ASSOC));
-?>
---EXPECT--
-array(3) {
- [0]=>
- array(2) {
- ["id"]=>
- string(1) "1"
- ["val"]=>
- string(1) "A"
- }
- [1]=>
- array(2) {
- ["id"]=>
- string(1) "2"
- ["val"]=>
- string(1) "B"
- }
- [2]=>
- array(2) {
- ["id"]=>
- string(1) "3"
- ["val"]=>
- string(1) "C"
- }
-}