You are here

function system_test_modules_disabled in SimpleTest 7

Implement hook_modules_disabled().

File

tests/system_test.module, line 164

Code

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