1 module.test ModuleUnitTest::testModuleInvoke()

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

File

core/modules/simpletest/tests/module.test, line 119
Tests for the module API.

Class

ModuleUnitTest
Unit tests for the module API.

Code

function testModuleInvoke() {
  module_enable(array('module_test'), FALSE);
  $this->resetAll();
  $this->backdropGet('module-test/hook-dynamic-loading-invoke');
  $this->assertText('success!', 'module_invoke() dynamically loads a hook defined in hook_hook_info().');
}