Index: drupal_test_case.php =================================================================== RCS file: /cvs/drupal/contributions/modules/simpletest/drupal_test_case.php,v retrieving revision 1.40 diff -u -r1.40 drupal_test_case.php --- drupal_test_case.php 7 Jan 2008 13:22:38 -0000 1.40 +++ drupal_test_case.php 12 Jan 2008 03:33:03 -0000 @@ -51,10 +51,11 @@ * @author Earnest Berry III * * @param $path string Drupal path or url to load into internal browser + * @param array $options Options to be forwarded to url(). * @return void */ - function drupalGet($path) { - $url = url($path, array('absolute' => TRUE)); + function drupalGet($path, $options = array()) { + $url = url($path, array_merge($options, array('absolute' => TRUE))); $html = $this->_browser->get($url); if ($this->drupalCheckAuth(true)) {