comparison core/modules/system/src/Tests/Installer/MinimalInstallerTest.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
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 }