function DatabaseRegressionTestCase::testDBFieldExists

Test the db_field_exists() function.

Archivo

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

Class

DatabaseRegressionTestCase
Regression tests.

Código

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