You are here

protected function MediaTest::getEditorialPermissions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/MediaTest.php \Drupal\Tests\jsonapi\Functional\MediaTest::getEditorialPermissions()
  2. 10 core/modules/jsonapi/tests/src/Functional/MediaTest.php \Drupal\Tests\jsonapi\Functional\MediaTest::getEditorialPermissions()

Gets an array of permissions required to view and update any tested entity.

Return value

string[] An array of permission names.

Overrides ResourceTestBase::getEditorialPermissions

File

core/modules/jsonapi/tests/src/Functional/MediaTest.php, line 332

Class

MediaTest
JSON:API integration test for the "Media" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getEditorialPermissions() {
  return array_merge(parent::getEditorialPermissions(), [
    'view any unpublished content',
  ]);
}