public function BlockRegionTest::testTransformSameThemeRegionExists in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/block/tests/src/Unit/Plugin/migrate/process/BlockRegionTest.php \Drupal\Tests\block\Unit\Plugin\migrate\process\BlockRegionTest::testTransformSameThemeRegionExists()
If the source and destination themes are identical, the region should only be passed through if it actually exists in the destination theme.
@covers ::transform
File
- core/
modules/ block/ tests/ src/ Unit/ Plugin/ migrate/ process/ BlockRegionTest.php, line 55 - Contains \Drupal\Tests\block\Unit\Plugin\migrate\process\BlockRegionTest.
Class
- BlockRegionTest
- @coversDefaultClass \Drupal\block\Plugin\migrate\process\BlockRegion @group block
Namespace
Drupal\Tests\block\Unit\Plugin\migrate\processCode
public function testTransformSameThemeRegionExists() {
$this
->assertSame('triptych_second', $this
->transform([
'triptych_second',
'bartik',
'bartik',
]));
}