You are here

function system_test_modules_installed in SimpleTest 7

Implement hook_modules_installed().

File

tests/system_test.module, line 146

Code

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