Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / settings_tray / tests / src / Unit / Ajax / OpenOffCanvasDialogCommandTest.php
diff --git a/web/core/modules/settings_tray/tests/src/Unit/Ajax/OpenOffCanvasDialogCommandTest.php b/web/core/modules/settings_tray/tests/src/Unit/Ajax/OpenOffCanvasDialogCommandTest.php
deleted file mode 100644 (file)
index 5985cbd..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-namespace Drupal\Tests\settings_tray\Unit\Ajax;
-
-use Drupal\settings_tray\Ajax\OpenOffCanvasDialogCommand;
-use Drupal\Tests\UnitTestCase;
-
-/**
- * @coversDefaultClass \Drupal\settings_tray\Ajax\OpenOffCanvasDialogCommand
- * @group settings_tray
- */
-class OpenOffCanvasDialogCommandTest extends UnitTestCase {
-
-  /**
-   * @covers ::render
-   */
-  public function testRender() {
-    $command = new OpenOffCanvasDialogCommand('Title', '<p>Text!</p>', ['url' => 'example']);
-
-    $expected = [
-      'command' => 'openDialog',
-      'selector' => '#drupal-off-canvas',
-      'settings' => NULL,
-      'data' => '<p>Text!</p>',
-      'dialogOptions' => [
-        'url' => 'example',
-        'title' => 'Title',
-        'modal' => FALSE,
-        'autoResize' => FALSE,
-        'resizable' => 'w',
-        'draggable' => FALSE,
-        'drupalAutoButtons' => FALSE,
-        'buttons' => [],
-        'dialogClass' => 'ui-dialog-off-canvas',
-        'width' => 300,
-      ],
-      'effect' => 'fade',
-      'speed' => 1000,
-    ];
-    $this->assertEquals($expected, $command->render());
-  }
-
-}