
| Current Path : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Extension/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/holz-machines/web/core/tests/Drupal/Tests/Core/Extension/DefaultConfigTest.php |
<?php
namespace Drupal\Tests\Core\Extension;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\Yaml\Yaml;
/**
* Tests default configuration of the Extension system.
*
* @group Extension
*/
class DefaultConfigTest extends UnitTestCase {
/**
* Tests that core.extension.yml is empty by default.
*
* The default configuration MUST NOT specify any extensions, because every
* extension has to be installed in a regular way.
*
* Otherwise, the regular runtime application would operate with extensions
* that were never installed. The default configuration of such extensions
* would not exist. Installation hooks would never be executed.
*/
public function testConfigIsEmpty() {
$config = Yaml::parse(file_get_contents($this->root . '/core/config/install/core.extension.yml'));
$expected = [
'module' => [],
'theme' => [],
'profile' => '',
];
$this->assertEquals($expected, $config);
}
}