Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / src / Tests / Installer / MinimalInstallerTest.php
1 <?php
2
3 namespace Drupal\system\Tests\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 }