function DatabaseRegressionTestCase::testDBFieldExists

7.x database_test.test DatabaseRegressionTestCase::testDBFieldExists()

Test the db_field_exists() function.

File

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

Class

DatabaseRegressionTestCase
Regression tests.

Code

function testDBFieldExists() {
  $this->assertIdentical(TRUE, db_field_exists('node', 'nid'), 'Returns true for existent column.');
  $this->assertIdentical(FALSE, db_field_exists('node', 'nosuchcolumn'), 'Returns false for nonexistent column.');
}