SaveDeriverTest.php in Workbench Moderation to Content Moderation 8.2
File
tests/src/Kernel/Plugin/Deriver/SaveDeriverTest.php
View source
<?php
namespace Drupal\Tests\wbm2cm\Plugin\Deriver;
use Drupal\KernelTests\KernelTestBase;
class SaveDeriverTest extends KernelTestBase {
protected static $modules = [
'field',
'filter',
'migrate',
'node',
'options',
'system',
'text',
'user',
'views',
'wbm2cm',
'workbench_moderation',
];
public function testDeriver() {
$this->container
->get('state')
->set('moderation_entity_types', [
'node',
]);
$migration = $this->container
->get('plugin.manager.migration')
->getDefinition('wbm2cm_save:node');
$this
->assertEquals('content_entity_revision:node', $migration['source']['plugin']);
}
}