function DatabaseRegressionTestCase::testDBIndexExists

Test the db_index_exists() function.

Archivo

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

Class

DatabaseRegressionTestCase
Regression tests.

Código

function testDBIndexExists() {
  $this->assertIdentical(TRUE, db_index_exists('node', 'node_created'), 'Returns true for existent index.');
  $this->assertIdentical(FALSE, db_index_exists('node', 'nosuchindex'), 'Returns false for nonexistent index.');
}