You are here

function activity_simpletest in Activity 5.3

Same name and namespace in other branches
  1. 5.4 activity.module \activity_simpletest()
  2. 6 activity.module \activity_simpletest()

Implementation of hook_simpletest().

File

./activity.module, line 698
Activity module: Allow users to see their friends' activity on the site.

Code

function activity_simpletest() {
  $module_name = 'activity';
  $dir = drupal_get_path('module', $module_name) . '/tests';
  $tests = file_scan_directory($dir, '\\.test$');
  return array_keys($tests);
}