class MigrateNodeSettingStickyTest

Same name and namespace in other branches
  1. 11.x core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php \Drupal\Tests\node\Kernel\Migrate\d6\MigrateNodeSettingStickyTest

@group migrate_drupal_6

Hierarchy

Expanded class hierarchy of MigrateNodeSettingStickyTest

File

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

Namespace

Drupal\Tests\node\Kernel\Migrate\d6
View source
class MigrateNodeSettingStickyTest extends MigrateDrupal6TestBase {
  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() {
    $this->assertSame('Sticky at the top of lists', BaseFieldOverride::load('node.article.sticky')->label());
  }

}

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