You are here

public function ReadOnlyModeTest::testReadOnlyModeEnabled in Read only mode 8

Same name and namespace in other branches
  1. 2.0.x tests/src/Functional/ReadonlymodeTest.php \Drupal\Tests\readonlymode\Functional\ReadonlymodeTest::testReadOnlyModeEnabled()

File

tests/src/Functional/ReadonlymodeTest.php, line 27

Class

ReadOnlyModeTest
Tests ReadOnlyMode.

Namespace

Drupal\Tests\readonlymode\Functional

Code

public function testReadOnlyModeEnabled() {
  $account = $this
    ->drupalCreateUser([], [], TRUE);
  $this
    ->drupalLogin($account);
  $this
    ->drupalGet('admin/config/development/maintenance');
  $this
    ->assertSession()
    ->responseContains('Read Only Mode');
}