You are here

protected function ShortcutTest::getPostDocument in JSON:API 8.2

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

Returns the JSON:API POST document.

Return value

array A JSON:API request document.

Overrides ResourceTestBase::getPostDocument

See also

::testPostIndividual()

File

tests/src/Functional/ShortcutTest.php, line 128

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:/',
        ],
      ],
    ],
  ];
}