NodeXmlCookieTest.php in Drupal 8
File
core/modules/node/tests/src/Functional/Rest/NodeXmlCookieTest.php
View source
<?php
namespace Drupal\Tests\node\Functional\Rest;
use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
class NodeXmlCookieTest extends NodeResourceTestBase {
use CookieResourceTestTrait;
use XmlEntityNormalizationQuirksTrait;
protected static $format = 'xml';
protected static $mimeType = 'text/xml; charset=UTF-8';
protected static $auth = 'cookie';
protected $defaultTheme = 'stark';
public function testPatchPath() {
$this
->markTestSkipped();
}
}