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
1 <?php
2
3 namespace Drupal\FunctionalTests\Installer;
4
5 use Drupal\KernelTests\AssertConfigTrait;
6
7 /**
8  * Tests the interactive installer installing the minimal profile.
9  *
10  * @group Installer
11  */
12 class MinimalInstallerTest extends ConfigAfterInstallerTestBase {
13
14   use AssertConfigTrait;
15
16   /**
17    * {@inheritdoc}
18    */
19   protected $profile = 'minimal';
20
21   /**
22    * Ensures that the exported minimal configuration is up to date.
23    */
24   public function testMinimalConfig() {
25     $this->assertInstalledConfig([]);
26   }
27
28 }