function system_test_modules_uninstalled in SimpleTest 7
Implement hook_modules_uninstalled().
File
- tests/
system_test.module, line 173  
Code
function system_test_modules_uninstalled($modules) {
  if (in_array('aggregator', $modules)) {
    drupal_set_message(t('hook_modules_uninstalled fired for aggregator'));
  }
}