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