BlockCustomTest.php

Same filename and directory in other branches
  1. 9 core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php
  2. 8.9.x core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php
  3. 10 core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php

Namespace

Drupal\Tests\block_content\Kernel\Plugin\migrate\source\d7

File

core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\block_content\Kernel\Plugin\migrate\source\d7;

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;

/**
 * Tests d7_block_custom source plugin.
 *
 * @covers \Drupal\block_content\Plugin\migrate\source\d7\BlockCustom
 * @group block_content
 */
class BlockCustomTest extends MigrateSqlSourceTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'block_content',
    'migrate_drupal',
  ];
  
  /**
   * {@inheritdoc}
   */
  public static function providerSource() {
    $tests = [];
    $tests[0]['source_data']['block_custom'] = [
      [
        'bid' => '1',
        'body' => "I don't feel creative enough to write anything clever here.",
        'info' => 'Meh',
        'format' => 'filtered_html',
      ],
    ];
    // The expected results are identical to the source data.
    $tests[0]['expected_data'] = $tests[0]['source_data']['block_custom'];
    return $tests;
  }

}

Classes

Title Deprecated Summary
BlockCustomTest Tests d7_block_custom source plugin.

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