MinimalInstallerTest.php 586 B

123456789101112131415161718192021222324252627282930313233
  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. * {@inheritdoc}
  17. */
  18. protected $defaultTheme = 'stark';
  19. /**
  20. * Ensures that the exported minimal configuration is up to date.
  21. */
  22. public function testMinimalConfig() {
  23. $this->assertInstalledConfig([]);
  24. }
  25. }