You are here

function UrlAlterFunctionalTest::testGetQInitialized in Drupal 7

Tests that $_GET['q'] is initialized when the request path is empty.

File

modules/simpletest/tests/path.test, line 206
Tests for path.inc.

Class

UrlAlterFunctionalTest
Tests hook_url_alter functions.

Code

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.");
}