You are here

protected function ShortcutTest::getPostDocument in Drupal 10

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

File

core/modules/jsonapi/tests/src/Functional/ShortcutTest.php, line 136

Class

ShortcutTest
JSON:API integration test for the "Shortcut" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getPostDocument() {
  return [
    'data' => [
      'type' => 'shortcut--default',
      'attributes' => [
        'title' => 'Comments',
        'link' => [
          'uri' => 'internal:/',
        ],
      ],
    ],
  ];
}