ParagraphsItemRevisionSourceTest.php in Paragraphs 8
File
tests/src/Kernel/migrate/ParagraphsItemRevisionSourceTest.php
View source
<?php
namespace Drupal\Tests\paragraphs\Kernel\migrate;
use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;
use Drupal\Tests\paragraphs\Traits\ParagraphsSourceData;
class ParagraphsItemRevisionSourceTest extends MigrateSqlSourceTestBase {
use ParagraphsSourceData;
public static $modules = [
'migrate_drupal',
'paragraphs',
];
public function providerSource() {
$data = $this
->getSourceData();
$data[0]['expected_results'] = [
[
'item_id' => '2',
'revision_id' => '2',
'field_name' => 'field_paragraphs_field',
'bundle' => 'paragraphs_field',
'archived' => '0',
'parent_id' => '42',
'parent_type' => 'taxonomy_term',
'field_text' => [
0 => [
'value' => 'PID2R2 text',
],
],
],
];
return $data;
}
}