You are here

MigrateActionConfigsTest.php in Drupal 9

File

core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php
View source
<?php

namespace Drupal\Tests\action\Kernel\Migrate\d6;

use Drupal\Tests\SchemaCheckTestTrait;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * Upgrade variables to null.
 *
 * @group migrate_drupal_6
 */
class MigrateActionConfigsTest extends MigrateDrupal6TestBase {
  use SchemaCheckTestTrait;

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'action',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->executeMigration('action_settings');
  }

  /**
   * Tests migration of action variables to null.
   */
  public function testActionSettings() {
    $config = $this
      ->config('action.settings');
    $this
      ->assertTrue($config
      ->isNew());
  }

}

Classes

Namesort descending Description
MigrateActionConfigsTest Upgrade variables to null.