You are here

public function ThemeSettingsTest::testDefaultConfig in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Theme/ThemeSettingsTest.php \Drupal\KernelTests\Core\Theme\ThemeSettingsTest::testDefaultConfig()

Tests that $theme.settings are imported and used as default theme settings.

File

core/tests/Drupal/KernelTests/Core/Theme/ThemeSettingsTest.php, line 44

Class

ThemeSettingsTest
Tests theme settings functionality.

Namespace

Drupal\KernelTests\Core\Theme

Code

public function testDefaultConfig() {
  $name = 'test_basetheme';
  $path = $this->availableThemes[$name]
    ->getPath();
  $this
    ->assertFileExists("{$path}/" . InstallStorage::CONFIG_INSTALL_DIRECTORY . "/{$name}.settings.yml");
  $this->container
    ->get('theme_installer')
    ->install([
    $name,
  ]);
  $this
    ->assertIdentical(theme_get_setting('base', $name), 'only');
}