Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / FunctionalTests / Installer / InstallerEmptySettingsTest.php
diff --git a/web/core/tests/Drupal/FunctionalTests/Installer/InstallerEmptySettingsTest.php b/web/core/tests/Drupal/FunctionalTests/Installer/InstallerEmptySettingsTest.php
new file mode 100644 (file)
index 0000000..839009e
--- /dev/null
@@ -0,0 +1,30 @@
+<?php
+
+namespace Drupal\FunctionalTests\Installer;
+
+/**
+ * Tests the installer with empty settings file.
+ *
+ * @group Installer
+ */
+class InstallerEmptySettingsTest extends InstallerTestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function prepareEnvironment() {
+    parent::prepareEnvironment();
+    // Create an empty settings.php file.
+    $path = $this->root . DIRECTORY_SEPARATOR . $this->siteDirectory;
+    file_put_contents($path . '/settings.php', '');
+  }
+
+  /**
+   * Verifies that installation succeeded.
+   */
+  public function testInstaller() {
+    $this->assertUrl('user/1');
+    $this->assertResponse(200);
+  }
+
+}