MinimalInstallerTest.php 517 B

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