common_test_drupal_goto_redirect

Versions
mediamosa-21
common_test_drupal_goto_redirect()

Check that drupal_goto() exits once called.

Code

modules/simpletest/tests/common_test.module, line 49

<?php
function common_test_drupal_goto_redirect() {
  drupal_goto('common-test/drupal_goto');
  print t("Drupal goto failed to stop program");
}
?>