You are here

public function DisplayPathTest::testDeleteWithNoPath in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views_ui/tests/src/Functional/DisplayPathTest.php \Drupal\Tests\views_ui\Functional\DisplayPathTest::testDeleteWithNoPath()
  2. 10 core/modules/views_ui/tests/src/Functional/DisplayPathTest.php \Drupal\Tests\views_ui\Functional\DisplayPathTest::testDeleteWithNoPath()

Tests deleting a page display that has no path.

File

core/modules/views_ui/tests/src/Functional/DisplayPathTest.php, line 116

Class

DisplayPathTest
Tests the UI of generic display path plugin.

Namespace

Drupal\Tests\views_ui\Functional

Code

public function testDeleteWithNoPath() {
  $this
    ->drupalGet('admin/structure/views/view/test_view');
  $this
    ->submitForm([], 'Add Page');
  $this
    ->submitForm([], 'Delete Page');
  $this
    ->submitForm([], 'Save');
  $this
    ->assertSession()
    ->pageTextContains("The view Test view has been saved.");
}