You are here

public function MigrateTextConfigsTest::testTextSettings in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/text/tests/src/Kernel/Migrate/MigrateTextConfigsTest.php \Drupal\Tests\text\Kernel\Migrate\MigrateTextConfigsTest::testTextSettings()

Tests migration of text variables to text.settings.yml.

File

core/modules/text/tests/src/Kernel/Migrate/MigrateTextConfigsTest.php, line 28

Class

MigrateTextConfigsTest
Upgrade variables to text.settings.yml.

Namespace

Drupal\Tests\text\Kernel\Migrate

Code

public function testTextSettings() {
  $config = $this
    ->config('text.settings');
  $this
    ->assertSame(456, $config
    ->get('default_summary_length'));
  $this
    ->assertConfigSchema(\Drupal::service('config.typed'), 'text.settings', $config
    ->get());
}