You are here

public function MigrateNodeConfigsTest::testNodeSettings in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeConfigsTest.php \Drupal\Tests\node\Kernel\Migrate\d6\MigrateNodeConfigsTest::testNodeSettings()

Tests Drupal 6 node settings to Drupal 8 migration.

File

core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeConfigsTest.php, line 28

Class

MigrateNodeConfigsTest
Upgrade variables to node.settings.yml.

Namespace

Drupal\Tests\node\Kernel\Migrate\d6

Code

public function testNodeSettings() {
  $config = $this
    ->config('node.settings');
  $this
    ->assertFalse($config
    ->get('use_admin_theme'));
  $this
    ->assertConfigSchema(\Drupal::service('config.typed'), 'node.settings', $config
    ->get());
}