Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Tests / Installer / InstallerEmptySettingsTest.php
diff --git a/web/core/modules/system/src/Tests/Installer/InstallerEmptySettingsTest.php b/web/core/modules/system/src/Tests/Installer/InstallerEmptySettingsTest.php
deleted file mode 100644 (file)
index 85fb889..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Installer;
-
-use Drupal\simpletest\InstallerTestBase;
-
-/**
- * Tests the installer with empty settings file.
- *
- * @group Installer
- */
-class InstallerEmptySettingsTest extends InstallerTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp() {
-    // Create an empty settings.php file.
-    touch($this->siteDirectory . '/settings.php');
-    parent::setUp();
-  }
-
-  /**
-   * Verifies that installation succeeded.
-   */
-  public function testInstaller() {
-    $this->assertUrl('user/1');
-    $this->assertResponse(200);
-  }
-
-}