You are here

function system_test_modules_enabled in SimpleTest 7

Implement hook_modules_enabled().

File

tests/system_test.module, line 155

Code

function system_test_modules_enabled($modules) {
  if (in_array('aggregator', $modules)) {
    drupal_set_message(t('hook_modules_enabled fired for aggregator'));
  }
}