function EnableDisableTestCase::testEntityInfoCacheWatchdog in Drupal 7
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.
Class
- EnableDisableTestCase
- Test module enabling/disabling functionality.
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.');
}