comparison core/tests/Drupal/FunctionalTests/Installer/MinimalInstallerTest.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents
children
comparison
equal deleted inserted replaced
15:e200cb7efeb3 16:c2387f117808
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 }