Hello SimpleTest
Este es un ejemplo trivial donde uso SimpleTest para comprobar el módulo HelloWorld . Entorno Windows 7 Pro Drupal 6.19 XAMPP 1.7.1 para Windows Aptana Studio 2.0.4 Módulo SimpleTest 6.x-2.10 Procedimiento Tengo creado el módulo HelloWorld: helloworld.info ; $Id$ name = Hello World description = Hello World simple module core = 6.x package = Hello helloworld.module <?php // $Id$ /** * Implementation of hook_menu() */ function helloworld_menu() { $items = array(); $items['helloworld'] = array( 'title' => 'Hello World', 'page callback' => 'helloworld_page', 'access arguments' => array('access helloworld content'), 'type' => MENU_NORMAL_ITEM, ); return $items; } /** * Return content */ function helloworld_page() { $greeting = variable_get('helloworld_greeting', ' ...