function ModuleUnitTest::testModuleInvokeAll

7.x module.test ModuleUnitTest::testModuleInvokeAll()

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

File

drupal-7.x/modules/simpletest/tests/module.test, line 126
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().');
}