| 7 system.test | EnableDisableTestCase::testEntityInfoCacheWatchdog() |
Tests entity info cache after enabling a module with a dependency on an entity providing module.
See also
File
- modules/
system/ system.test, line 300 - Tests for system.module.
Code
function testEntityInfoCacheWatchdog() {
module_enable(array('entity_cache_test'));
$info = variable_get('entity_cache_test');
$this->assertEqual($info['label'], 'Entity Cache Test', 'Entity info label is correct.');
$this->assertEqual($info['controller class'], 'DrupalDefaultEntityController', 'Entity controller class info is correct.');
}
Login or register to post comments