function GotoTest::testDrupalGotoAlter

Tests hook_drupal_goto_alter().

File

drupal/core/modules/system/lib/Drupal/system/Tests/Common/GotoTest.php, line 75
Definition of Drupal\system\Tests\Common\GotoTest.

Class

GotoTest
Tests drupal_goto() and hook_drupal_goto_alter().

Namespace

Drupal\system\Tests\Common

Code

function testDrupalGotoAlter() {
  $this
    ->drupalGet('common-test/drupal_goto/redirect_fail');
  $this
    ->assertNoText(t("Drupal goto failed to stop program"), 'Drupal goto stopped program.');
  $this
    ->assertNoText('drupal_goto_fail', 'Drupal goto redirect failed.');
}