function UrlAlterFunctionalTest::testGetQInitialized

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

Archivo

drupal-7.x/modules/simpletest/tests/path.test, line 206
Tests for path.inc.

Class

UrlAlterFunctionalTest
Tests hook_url_alter functions.

Código

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