Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / hal / tests / src / Functional / EntityResource / Message / MessageHalJsonAnonTest.php
diff --git a/web/core/modules/hal/tests/src/Functional/EntityResource/Message/MessageHalJsonAnonTest.php b/web/core/modules/hal/tests/src/Functional/EntityResource/Message/MessageHalJsonAnonTest.php
deleted file mode 100644 (file)
index a9b3ae1..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace Drupal\Tests\hal\Functional\EntityResource\Message;
-
-use Drupal\Tests\hal\Functional\EntityResource\HalEntityNormalizationTrait;
-use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
-use Drupal\Tests\rest\Functional\EntityResource\Message\MessageResourceTestBase;
-
-/**
- * @group hal
- */
-class MessageHalJsonAnonTest extends MessageResourceTestBase {
-
-  use HalEntityNormalizationTrait;
-  use AnonResourceTestTrait;
-
-  /**
-   * {@inheritdoc}
-   */
-  public static $modules = ['hal'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $format = 'hal_json';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $mimeType = 'application/hal+json';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getNormalizedPostEntity() {
-    return parent::getNormalizedPostEntity() + [
-      '_links' => [
-        'type' => [
-          'href' => $this->baseUrl . '/rest/type/contact_message/camelids',
-        ],
-      ],
-    ];
-  }
-
-}