diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-11-24 13:41:11 -0800 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-11-24 13:41:11 -0800 |
commit | c1b5616cc236c7a65569e1fad039e62e64bfab6a (patch) | |
tree | b4591465d71b5c160d189bc2fb3df29d6667593d /modules/simpletest/tests/path.test | |
parent | e1616f4d135f1bccc0de98bcb11bbb88a6e6932d (diff) | |
download | brdo-c1b5616cc236c7a65569e1fad039e62e64bfab6a.tar.gz brdo-c1b5616cc236c7a65569e1fad039e62e64bfab6a.tar.bz2 |
Issue #1329914 by xjm, msonnabaum: Fixed Ensure ['q'] is set before calling drupal_normal_path().
Diffstat (limited to 'modules/simpletest/tests/path.test')
-rw-r--r-- | modules/simpletest/tests/path.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/simpletest/tests/path.test b/modules/simpletest/tests/path.test index 4998ffa38..8b3e6dc48 100644 --- a/modules/simpletest/tests/path.test +++ b/modules/simpletest/tests/path.test @@ -201,6 +201,14 @@ class UrlAlterFunctionalTest extends DrupalWebTestCase { } /** + * Tests that $_GET['q'] is initialized when the request path is empty. + */ + function testGetQInitialized() { + $this->drupalGet(''); + $this->assertText("\$_GET['q'] is non-empty with an empty request path.", "\$_GET['q'] is initialized with an empty request path."); + } + + /** * Assert that an outbound path is altered to an expected value. * * @param $original |