function NodePublishTest::testActionExecution
Tests the action execution.
@covers ::execute
File
-
tests/
src/ Unit/ Integration/ RulesAction/ NodePublishTest.php, line 44
Class
- NodePublishTest
- @coversDefaultClass \Drupal\rules\Plugin\RulesAction\NodePublish @group RulesAction
Namespace
Drupal\Tests\rules\Unit\Integration\RulesActionCode
public function testActionExecution() {
$node = $this->prophesizeEntity(NodeInterface::class);
$node->setPublished()
->shouldBeCalledTimes(1);
$this->action
->setContextValue('node', $node->reveal());
$this->action
->execute();
$this->assertEquals([
'node',
], $this->action
->autoSaveContext(), 'Action returns the user context name for auto saving.');
}