Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / aggregator / tests / src / Functional / Rest / FeedXmlAnonTest.php
diff --git a/web/core/modules/aggregator/tests/src/Functional/Rest/FeedXmlAnonTest.php b/web/core/modules/aggregator/tests/src/Functional/Rest/FeedXmlAnonTest.php
new file mode 100644 (file)
index 0000000..41b03a6
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+
+namespace Drupal\Tests\aggregator\Functional\Rest;
+
+use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
+use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
+
+/**
+ * @group rest
+ */
+class FeedXmlAnonTest extends FeedResourceTestBase {
+
+  use AnonResourceTestTrait;
+  use XmlEntityNormalizationQuirksTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $format = 'xml';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $mimeType = 'text/xml; charset=UTF-8';
+
+}