Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / language / src / Tests / LanguageTourTest.php
diff --git a/web/core/modules/language/src/Tests/LanguageTourTest.php b/web/core/modules/language/src/Tests/LanguageTourTest.php
deleted file mode 100644 (file)
index b11006e..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-
-namespace Drupal\language\Tests;
-
-use Drupal\tour\Tests\TourTestBase;
-
-/**
- * Tests tour functionality.
- *
- * @group tour
- */
-class LanguageTourTest extends TourTestBase {
-
-  /**
-   * An admin user with administrative permissions for views.
-   *
-   * @var \Drupal\user\UserInterface
-   */
-  protected $adminUser;
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  public static $modules = ['block', 'language', 'tour'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp() {
-    parent::setUp();
-    $this->adminUser = $this->drupalCreateUser(['administer languages', 'access tour']);
-    $this->drupalLogin($this->adminUser);
-    $this->drupalPlaceBlock('local_actions_block');
-  }
-
-  /**
-   * Tests language tour tip availability.
-   */
-  public function testLanguageTour() {
-    $this->drupalGet('admin/config/regional/language');
-    $this->assertTourTips();
-  }
-
-  /**
-   * Go to add language page and check the tour tooltips.
-   */
-  public function testLanguageAddTour() {
-    $this->drupalGet('admin/config/regional/language/add');
-    $this->assertTourTips();
-  }
-
-  /**
-   * Go to edit language page and check the tour tooltips.
-   */
-  public function testLanguageEditTour() {
-    $this->drupalGet('admin/config/regional/language/edit/en');
-    $this->assertTourTips();
-  }
-
-}