You are here

public function RemoveBlockRequestHandlerTest::panelsDisplayIsSavedAfterBlockRemoval in Panels 8.4

@test

File

panels_ipe/tests/src/Unit/RemoveBlockRequestHandlerTest.php, line 32

Class

RemoveBlockRequestHandlerTest
Tests for Drupal\panels_ipe\Helpers\RemoveBlockRequestHandler.

Namespace

Drupal\Tests\panels_ipe\Unit

Code

public function panelsDisplayIsSavedAfterBlockRemoval() {
  $this->panelsStore
    ->expects($this
    ->once())
    ->method('save');
  $this->sut
    ->handleRequest($this->panelsDisplay, $this
    ->createRequest('someblock'));
}