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