1 module.test | ModuleUnitTest::testModuleInvokeAll() |
Test that module_invoke_all() can load a hook defined in hook_hook_info().
File
- core/
modules/ simpletest/ tests/ module.test, line 129 - Tests for the module API.
Class
- ModuleUnitTest
- Unit tests for the module API.
Code
function testModuleInvokeAll() {
module_enable(array('module_test'), FALSE);
$this->resetAll();
$this->backdropGet('module-test/hook-dynamic-loading-invoke-all');
$this->assertText('success!', 'module_invoke_all() dynamically loads a hook defined in hook_hook_info().');
}