Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / FunctionalTests / Installer / MinimalInstallerTest.php
diff --git a/web/core/tests/Drupal/FunctionalTests/Installer/MinimalInstallerTest.php b/web/core/tests/Drupal/FunctionalTests/Installer/MinimalInstallerTest.php
new file mode 100644 (file)
index 0000000..baefe0f
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+
+namespace Drupal\FunctionalTests\Installer;
+
+use Drupal\KernelTests\AssertConfigTrait;
+
+/**
+ * Tests the interactive installer installing the minimal profile.
+ *
+ * @group Installer
+ */
+class MinimalInstallerTest extends ConfigAfterInstallerTestBase {
+
+  use AssertConfigTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected $profile = 'minimal';
+
+  /**
+   * Ensures that the exported minimal configuration is up to date.
+   */
+  public function testMinimalConfig() {
+    $this->assertInstalledConfig([]);
+  }
+
+}