MigrateNodeSettingStickyTest.php

Same filename and directory in other branches
  1. 9 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php
  2. 8.9.x core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php
  3. 11.x core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php

Namespace

Drupal\Tests\node\Kernel\Migrate\d6

File

core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\node\Kernel\Migrate\d6;

use Drupal\Core\Field\Entity\BaseFieldOverride;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * @group migrate_drupal_6
 */
class MigrateNodeSettingStickyTest extends MigrateDrupal6TestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'node',
    'text',
    'menu_ui',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->installConfig([
      'node',
    ]);
    $this->executeMigration('d6_node_type');
    $this->executeMigration('d6_node_setting_sticky');
  }
  
  /**
   * Tests migration of the sticky checkbox's settings.
   */
  public function testMigration() : void {
    $this->assertSame('Sticky at the top of lists', BaseFieldOverride::load('node.article.sticky')->label());
  }

}

Classes

Title Deprecated Summary
MigrateNodeSettingStickyTest @group migrate_drupal_6

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.