function DatabaseRegressionTestCase::testDBTableExists

Test the db_table_exists() function.

File

drupal/modules/simpletest/tests/database_test.test, line 2934

Class

DatabaseRegressionTestCase
Regression tests.

Code

function testDBTableExists() {
  $this
    ->assertIdentical(TRUE, db_table_exists('node'), 'Returns true for existent table.');
  $this
    ->assertIdentical(FALSE, db_table_exists('nosuchtable'), 'Returns false for nonexistent table.');
}