function SystemAdminTestCase::testAdminPhpInfo

Test the phpinfo() page.

File

modules/system/system.test, line 2911

Class

SystemAdminTestCase
Tests administrative overview pages.

Code

function testAdminPhpInfo() {
    $this->drupalGet('admin/reports/status/php');
    $this->assertText('PHP');
    $this->assertNoText('_COOKIE[');
    variable_set('sa_core_2023_004_phpinfo_flags', INFO_ALL);
    $this->drupalGet('admin/reports/status/php');
    $this->assertText('PHP');
    $this->assertText('_COOKIE[');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.