function module_test_test_hook in Drupal 7
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/module_test/module_test.file.inc \module_test_test_hook()
- 9 core/modules/system/tests/modules/module_test/module_test.file.inc \module_test_test_hook()
Implements hook_test_hook().
File
- modules/
simpletest/ tests/ module_test.file.inc, line 11 - A file to test module_implements() loading includes.
Code
function module_test_test_hook() {
return array(
'module_test' => 'success!',
);
}