ParagraphsTypeMigrationTest.php

Namespace

Drupal\Tests\paragraphs\Kernel\migrate

File

paragraphs/tests/src/Kernel/migrate/ParagraphsTypeMigrationTest.php
View source
<?php

namespace Drupal\Tests\paragraphs\Kernel\migrate;


/**
 * Test Migration of paragraph and field collection bundles.
 *
 * @group paragraphs
 */
class ParagraphsTypeMigrationTest extends ParagraphsMigrationTestBase {

  /**
   * Test if the paragraph/fc types were brought over as a paragraph.
   */
  public function testParagraphsTypeMigration() {
    $this
      ->executeMigration('d7_field_collection_type');
    $this
      ->executeMigration('d7_paragraphs_type');
    $this
      ->assertParagraphBundleExists('field_collection_test', 'Field collection test');
    $this
      ->assertParagraphBundleExists('paragraph_bundle_one', 'Paragraph Bundle One');
    $this
      ->assertParagraphBundleExists('paragraph_bundle_two', 'Paragraph Bundle Two');
  }

}

Classes

Namesort descending Description
ParagraphsTypeMigrationTest Test Migration of paragraph and field collection bundles.