system_test_modules_uninstalled($modules)Implements hook_modules_uninstalled().
modules/simpletest/tests/system_test.module, line 180
<?php
function system_test_modules_uninstalled($modules) {
if (in_array('aggregator', $modules)) {
drupal_set_message(t('hook_modules_uninstalled fired for aggregator'));
}
}
?>