public function FieldCollectionTypeSourceTest::providerSource

File

paragraphs/tests/src/Kernel/migrate/FieldCollectionTypeSourceTest.php, line 25

Class

FieldCollectionTypeSourceTest
Test the field_collection_type source plugin.

Namespace

Drupal\Tests\paragraphs\Kernel\migrate

Code

public function providerSource() {
  $data = $this
    ->getSourceData();
  $data[0]['expected_results'] = [
    [
      'id' => '1',
      'field_name' => 'field_field_collection_field',
      'module' => 'field_collection',
      'active' => '1',
      'data' => 'serialized field collection field data',
      'name' => 'Field collection field',
      'bundle' => 'field_collection_field',
      'description' => '',
    ],
  ];
  return $data;
}