You are here

public function ConfigDeleteUITest::testFormAccess in Config Delete 8

Tests form access.

File

tests/src/Functional/ConfigDeleteUITest.php, line 103

Class

ConfigDeleteUITest
Tests the user interface for deleting configuration.

Namespace

Drupal\Tests\config_delete\Functional

Code

public function testFormAccess() {
  $this
    ->drupalLogout();
  $this
    ->drupalGet('admin/config/development/configuration/delete');
  $this
    ->assertSession()
    ->statusCodeEquals(403);
}