MigrateCommentVariableFieldTest.php in Zircon Profile 8
Same filename and directory in other branches
Namespace
Drupal\comment\Tests\Migrate\d6File
core/modules/comment/src/Tests/Migrate/d6/MigrateCommentVariableFieldTest.phpView source
<?php
/**
* @file
* Contains \Drupal\comment\Tests\Migrate\d6\MigrateCommentVariableFieldTest.
*/
namespace Drupal\comment\Tests\Migrate\d6;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;
/**
* Upgrade comment variables to field.storage.node.comment.yml.
*
* @group migrate_drupal_6
*/
class MigrateCommentVariableFieldTest extends MigrateDrupal6TestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
'comment',
];
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this
->installConfig([
'comment',
]);
$this
->migrateContentTypes();
$this
->executeMigrations([
'd6_comment_type',
'd6_comment_field',
]);
}
/**
* Tests comment variables migrated into a field entity.
*/
public function testCommentField() {
$this
->assertTrue(is_object(FieldStorageConfig::load('node.comment')));
}
}
Classes
Name | Description |
---|---|
MigrateCommentVariableFieldTest | Upgrade comment variables to field.storage.node.comment.yml. |