Version 1
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / Role / RoleJsonAnonTest.php
diff --git a/web/core/modules/rest/tests/src/Functional/EntityResource/Role/RoleJsonAnonTest.php b/web/core/modules/rest/tests/src/Functional/EntityResource/Role/RoleJsonAnonTest.php
new file mode 100644 (file)
index 0000000..eb0b05f
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\Tests\rest\Functional\EntityResource\Role;
+
+use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
+
+/**
+ * @group rest
+ */
+class RoleJsonAnonTest extends RoleResourceTestBase {
+
+  use AnonResourceTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $format = 'json';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $mimeType = 'application/json';
+
+}