function DevelRequirementsTest::testStatusPage
Same name in other branches
- 5.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\FunctionalCode
public function testStatusPage() {
$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.');
}