Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Tests / Installer / InstallerExistingInstallationTest.php
diff --git a/web/core/modules/system/src/Tests/Installer/InstallerExistingInstallationTest.php b/web/core/modules/system/src/Tests/Installer/InstallerExistingInstallationTest.php
deleted file mode 100644 (file)
index 442de6c..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Installer;
-
-use Drupal\simpletest\InstallerTestBase;
-
-/**
- * Tests the installer with an existing Drupal installation.
- *
- * @group Installer
- */
-class InstallerExistingInstallationTest extends InstallerTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp() {
-    parent::setUp();
-  }
-
-  /**
-   * Verifies that Drupal can't be reinstalled while an existing installation is
-   * available.
-   */
-  public function testInstaller() {
-    // Verify that Drupal can't be immediately reinstalled.
-    $this->visitInstaller();
-    $this->assertRaw('Drupal already installed');
-
-    // Delete settings.php and attempt to reinstall again.
-    unlink($this->siteDirectory . '/settings.php');
-    $this->visitInstaller();
-    $this->setUpLanguage();
-    $this->setUpProfile();
-    $this->setUpRequirementsProblem();
-    $this->setUpSettings();
-    $this->assertRaw('Drupal already installed');
-  }
-
-}