Test that module_invoke_all() can load a hook defined in hook_hook_info().

File

modules/simpletest/tests/module.test, line 167
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
    ->drupalGet('module-test/hook-dynamic-loading-invoke-all');
  $this
    ->assertText('success!', 'module_invoke_all() dynamically loads a hook defined in hook_hook_info().');
}