Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / taxonomy / tests / src / Functional / Rest / VocabularyJsonAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\taxonomy\Functional\Rest;
4
5 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6
7 /**
8  * @group rest
9  */
10 class VocabularyJsonAnonTest extends VocabularyResourceTestBase {
11
12   use AnonResourceTestTrait;
13
14   /**
15    * {@inheritdoc}
16    */
17   protected static $format = 'json';
18
19   /**
20    * {@inheritdoc}
21    */
22   protected static $mimeType = 'application/json';
23
24   /**
25    * Disable the GET test coverage due to bug in taxonomy module.
26    * @todo Fix in https://www.drupal.org/node/2805281: remove this override.
27    */
28   public function testGet() {
29     $this->markTestSkipped();
30   }
31
32 }