aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/db_tools_test.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-10-14 15:25:15 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-10-14 16:35:07 +0200
commit234edf674cd1c2ed3611f69cd925c4d5e29fdc20 (patch)
treec2ae488bed2f2503b817c1b7dfe9378a08a3c350 /tests/dbal/db_tools_test.php
parent1657339e6d0b9a04463ce63fefa6332cab8aad14 (diff)
downloadforums-234edf674cd1c2ed3611f69cd925c4d5e29fdc20.tar
forums-234edf674cd1c2ed3611f69cd925c4d5e29fdc20.tar.gz
forums-234edf674cd1c2ed3611f69cd925c4d5e29fdc20.tar.bz2
forums-234edf674cd1c2ed3611f69cd925c4d5e29fdc20.tar.xz
forums-234edf674cd1c2ed3611f69cd925c4d5e29fdc20.zip
[ticket/8240] Add ability to get a list of tables to db_tools.
PHPBB3-8240
Diffstat (limited to 'tests/dbal/db_tools_test.php')
-rw-r--r--tests/dbal/db_tools_test.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/dbal/db_tools_test.php b/tests/dbal/db_tools_test.php
index 927bce4597..130fc451f9 100644
--- a/tests/dbal/db_tools_test.php
+++ b/tests/dbal/db_tools_test.php
@@ -258,6 +258,13 @@ class phpbb_dbal_db_tools_test extends phpbb_database_test_case
$this->assertFalse($this->tools->sql_column_exists('prefix_table_name', 'c_id'));
}
+ public function test_list_tables()
+ {
+ $tables = $this->tools->sql_list_tables();
+ $this->assertTrue(isset($tables['prefix_table_name']));
+ $this->assertFalse(isset($tables['prefix_does_not_exist']));
+ }
+
public function test_table_exists()
{
$this->assertTrue($this->tools->sql_table_exists('prefix_table_name'));