Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / workflows / tests / src / Functional / Rest / WorkflowJsonCookieTest.php
diff --git a/web/core/modules/workflows/tests/src/Functional/Rest/WorkflowJsonCookieTest.php b/web/core/modules/workflows/tests/src/Functional/Rest/WorkflowJsonCookieTest.php
new file mode 100644 (file)
index 0000000..19bd342
--- /dev/null
@@ -0,0 +1,29 @@
+<?php
+
+namespace Drupal\Tests\workflows\Functional\Rest;
+
+use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
+
+/**
+ * @group rest
+ */
+class WorkflowJsonCookieTest extends WorkflowResourceTestBase {
+
+  use CookieResourceTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $format = 'json';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $mimeType = 'application/json';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $auth = 'cookie';
+
+}