You are here

function og_simpletest in Organic groups 5.2

Implementation of hook_simpletest().

File

./og.module, line 2427

Code

function og_simpletest() {
  $dir = drupal_get_path('module', 'og') . DIRECTORY_SEPARATOR . 'tests';
  require_once $dir . DIRECTORY_SEPARATOR . 'og_testcase.php';
  $tests = file_scan_directory($dir, '\\.test');
  return array_keys($tests);
}