function ModuleUnitTest::testModuleInvokeAll

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

Archivo

drupal-7.x/modules/simpletest/tests/module.test, line 126
Tests for the module API.

Class

ModuleUnitTest
Unit tests for the module API.

Código

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().');
}