MigrateNodeSettingPromoteTest.php

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

Namespace

Drupal\Tests\node\Kernel\Migrate\d6

File

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

View source
<?php

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 MigrateNodeSettingPromoteTest extends MigrateDrupal6TestBase {
    public static $modules = [
        'node',
        'text',
        'menu_ui',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        parent::setUp();
        $this->installConfig([
            'node',
        ]);
        $this->executeMigration('d6_node_type');
        $this->executeMigration('d6_node_setting_promote');
    }
    
    /**
     * Tests migration of the promote checkbox's settings.
     */
    public function testMigration() {
        $this->assertIdentical('Promoted to front page', BaseFieldOverride::load('node.article.promote')->label());
    }

}

Classes

Title Deprecated Summary
MigrateNodeSettingPromoteTest @group migrate_drupal_6

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