Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity / tests / src / Functional / Menu / EntityLocalActionTest.php
diff --git a/web/modules/contrib/entity/tests/src/Functional/Menu/EntityLocalActionTest.php b/web/modules/contrib/entity/tests/src/Functional/Menu/EntityLocalActionTest.php
deleted file mode 100644 (file)
index 4fb4faa..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-namespace Drupal\Tests\entity\Functional\Menu;
-
-use Drupal\Tests\BrowserTestBase;
-
-/**
- * Tests that entity local actions are generated correctly.
- *
- * @group entity
- *
- * @runTestsInSeparateProcesses
- *
- * @preserveGlobalState disabled
- */
-class EntityLocalActionTest extends BrowserTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $modules = ['block', 'entity', 'entity_module_test'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp() {
-    parent::setUp();
-
-    $this->drupalPlaceBlock('local_actions_block');
-
-    $account = $this->drupalCreateUser(['administer entity_test_enhanced']);
-    $this->drupalLogin($account);
-  }
-
-  /**
-   * Tests the local action on the collection is provided correctly.
-   */
-  public function testCollectionLocalAction() {
-    $this->drupalGet('/entity_test_enhanced');
-    $this->assertSession()->linkByHrefExists('/entity_test_enhanced/add');
-    $this->assertSession()->linkExists('Add enhanced entity');
-  }
-
-}