Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / media / tests / src / Functional / Rest / MediaTypeJsonAnonTest.php
diff --git a/web/core/modules/media/tests/src/Functional/Rest/MediaTypeJsonAnonTest.php b/web/core/modules/media/tests/src/Functional/Rest/MediaTypeJsonAnonTest.php
new file mode 100644 (file)
index 0000000..6ee494d
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\Tests\media\Functional\Rest;
+
+use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
+
+/**
+ * @group rest
+ */
+class MediaTypeJsonAnonTest extends MediaTypeResourceTestBase {
+
+  use AnonResourceTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $format = 'json';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $mimeType = 'application/json';
+
+}