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