function jammer_simpletest in Jammer 5
Implementation of hook_simpletest().
File
- ./
jammer.module, line 117 - Modify forms.
Code
function jammer_simpletest() {
// Scan through mymodule/tests directory for any .test files to tell SimpleTest module.
$tests = file_scan_directory(drupal_get_path('module', '') . '/tests', '\\.test');
return array_keys($tests);
}