function DatabaseRegressionTestCase::testDBTableExists

Test the db_table_exists() function.

Archivo

drupal-7.x/modules/simpletest/tests/database_test.test, line 2820

Class

DatabaseRegressionTestCase
Regression tests.

Código

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.');
}