You are here

function location_simpletest in Location 5.3

Implementation of hook_simpletest().

File

./location.module, line 155
Location module main routines. An implementation of a universal API for location manipulation. Provides functions for postal_code proximity searching, deep-linking into online mapping services. Currently, some options are configured through an…

Code

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