From 78737e8366ff2137d8876a0b39d38a083bac2de1 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Thu, 17 Sep 2009 03:47:23 +0000 Subject: #556534 by xmacinfo: Fixed SimpleTest help text. --- modules/simpletest/simpletest.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/simpletest/simpletest.module b/modules/simpletest/simpletest.module index af176b031..55bedae2b 100644 --- a/modules/simpletest/simpletest.module +++ b/modules/simpletest/simpletest.module @@ -13,7 +13,7 @@ function simpletest_help($path, $arg) { switch ($path) { case 'admin/help#simpletest': $output = '

' . t('The SimpleTest module is a framework for running automated unit tests in Drupal. It can be used to verify a working state of Drupal before and after any code changes, or as a means for developers to write and execute tests for their modules.') . '

'; - $output .= '

' . t('Visit Administer >> Structure >> SimpleTest to display a list of available tests. For comprehensive testing, select all tests, or individually select tests for more targeted testing. Note that it might take several minutes for all tests to complete.)', array('@admin-simpletest' => url('admin/config/development/testing'))) . '

'; + $output .= '

' . t('Visit Testing to display a list of available tests. For comprehensive testing, select all tests, or individually select tests for more targeted testing. Note that it might take several minutes for all tests to complete.)', array('@admin-simpletest' => url('admin/config/development/testing'))) . '

'; $output .= '

' . t('After the tests have run, a message will be displayed next to each test group indicating whether tests within it passed, failed, or had exceptions. A pass means that a test returned the expected results, while fail means that it did not. An exception normally indicates an error outside of the test, such as a PHP warning or notice. If there were fails or exceptions, the results are expanded, and the tests that had issues will be indicated in red or pink rows. Use these results to refine your code and tests until all tests return a pass.') . '

'; $output .= '

' . t('For more information on creating and modifying your own tests, see the SimpleTest API Documentation in the Drupal handbook.', array('@simpletest-api' => 'http://drupal.org/simpletest')) . '

'; $output .= '

' . t('For more information, see the online handbook entry for SimpleTest module.', array('@simpletest' => 'http://drupal.org/handbook/modules/simpletest')) . '

'; -- cgit v1.2.3