| 7 module.test | ModuleUnitTest::testModuleInvokeAll() |
| 8 module.test | ModuleUnitTest::testModuleInvokeAll() |
Test that module_invoke_all() can load a hook defined in hook_hook_info().
File
- modules/
simpletest/ tests/ module.test, line 126 - Tests for the module API.
Code
function testModuleInvokeAll() {
module_enable(array('module_test'), FALSE);
$this->resetAll();
$this->drupalGet('module-test/hook-dynamic-loading-invoke-all');
$this->assertText('success!', t('module_invoke_all() dynamically loads a hook defined in hook_hook_info().'));
}
Login or register to post comments