diff options
-rw-r--r-- | ext/pdo_mysql/tests/show_tables.phpt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/pdo_mysql/tests/show_tables.phpt b/ext/pdo_mysql/tests/show_tables.phpt new file mode 100644 index 0000000000..8919b6b778 --- /dev/null +++ b/ext/pdo_mysql/tests/show_tables.phpt @@ -0,0 +1,17 @@ +--TEST-- +PDO MySQL SHOW TABLES +--SKIPIF-- +<?php # vim:ft=php +if (!extension_loaded('pdo_mysql')) print 'skip not loaded'; +?> +--FILE-- +<?php +require 'ext/pdo/tests/pdo_test.inc'; +$db = PDOTest::test_factory('ext/pdo_mysql/tests/common.phpt'); + +print_r($db->query('SHOW TABLES')); +--EXPECT-- +PDOStatement Object +( + [queryString] => SHOW TABLES +) |