You are here

public function UpdateLayoutRequestHandlerTest::updatedLayoutGetsSavedToTempStore in Panels 8.3

@test

File

tests/src/Unit/panels_ipe/UpdateLayoutRequestHandlerTest.php, line 86

Class

UpdateLayoutRequestHandlerTest
Tests for \Drupal\panels_ipe\Helpers\UpdateLayoutRequestHandler.

Namespace

Drupal\Tests\panels\Unit\panels_ipe

Code

public function updatedLayoutGetsSavedToTempStore() {
  $this
    ->setPanelsDisplayExpectations();
  $this->panelsStore
    ->expects($this
    ->never())
    ->method('save');
  $this->tempStore
    ->expects($this
    ->never())
    ->method('delete');
  $this->tempStore
    ->expects($this
    ->once())
    ->method('set');
  $this->sut
    ->handleRequest($this->panelsDisplay, $this
    ->createRequest(Json::encode($this
    ->getLayoutModel())), TRUE);
}