You are here

public function MigrateSyslogConfigsTest::testSyslogSettings in Drupal 9

Same name in this branch
  1. 9 core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php \Drupal\Tests\syslog\Kernel\Migrate\d6\MigrateSyslogConfigsTest::testSyslogSettings()
  2. 9 core/modules/syslog/tests/src/Kernel/Migrate/d7/MigrateSyslogConfigsTest.php \Drupal\Tests\syslog\Kernel\Migrate\d7\MigrateSyslogConfigsTest::testSyslogSettings()
Same name and namespace in other branches
  1. 8 core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php \Drupal\Tests\syslog\Kernel\Migrate\d6\MigrateSyslogConfigsTest::testSyslogSettings()

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

File

core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php, line 33

Class

MigrateSyslogConfigsTest
Upgrade variables to syslog.settings.yml.

Namespace

Drupal\Tests\syslog\Kernel\Migrate\d6

Code

public function testSyslogSettings() {
  $config = $this
    ->config('syslog.settings');
  $this
    ->assertSame('drupal', $config
    ->get('identity'));
  $this
    ->assertSame(128, $config
    ->get('facility'));
  $this
    ->assertConfigSchema(\Drupal::service('config.typed'), 'syslog.settings', $config
    ->get());
}