ActionHalJsonAnonTest.php in Drupal 8
File
core/modules/system/tests/src/Functional/Hal/ActionHalJsonAnonTest.php
View source
<?php
namespace Drupal\Tests\system\Functional\Hal;
use Drupal\Tests\system\Functional\Rest\ActionResourceTestBase;
use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
class ActionHalJsonAnonTest extends ActionResourceTestBase {
use AnonResourceTestTrait;
public static $modules = [
'hal',
];
protected $defaultTheme = 'stark';
protected static $format = 'hal_json';
protected static $mimeType = 'application/hal+json';
}