function DevelRequirementsTest::testStatusPage

Same name in other branches
  1. 4.x tests/src/Functional/DevelRequirementsTest.php \Drupal\Tests\devel\Functional\DevelRequirementsTest::testStatusPage()

Tests that the status page shows a warning when evel is enabled.

File

tests/src/Functional/DevelRequirementsTest.php, line 15

Class

DevelRequirementsTest
Tests devel requirements.

Namespace

Drupal\Tests\devel\Functional

Code

public function testStatusPage() : void {
    $this->drupalLogin($this->adminUser);
    $this->drupalGet('admin/reports/status');
    $this->assertSession()
        ->statusCodeEquals(200);
    $this->assertSession()
        ->pageTextContains('Devel module enabled');
    $this->assertSession()
        ->pageTextContains('The Devel module provides access to internal debugging information; therefore it\'s recommended to disable this module on sites in production.');
}