Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / Menu / MenuJsonAnonTest.php
diff --git a/web/core/modules/rest/tests/src/Functional/EntityResource/Menu/MenuJsonAnonTest.php b/web/core/modules/rest/tests/src/Functional/EntityResource/Menu/MenuJsonAnonTest.php
new file mode 100644 (file)
index 0000000..9a83ce9
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\Tests\rest\Functional\EntityResource\Menu;
+
+use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
+
+/**
+ * @group rest
+ */
+class MenuJsonAnonTest extends MenuResourceTestBase {
+
+  use AnonResourceTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $format = 'json';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $mimeType = 'application/json';
+
+}