You are here

protected function MenuLinkContentTest::getPostDocument in Drupal 10

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

File

core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php, line 157

Class

MenuLinkContentTest
JSON:API integration test for the "MenuLinkContent" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function getPostDocument() {
  return [
    'data' => [
      'type' => 'menu_link_content--menu_link_content',
      'attributes' => [
        'title' => 'Dramallama',
        'link' => [
          'uri' => 'http://www.urbandictionary.com/define.php?term=drama%20llama',
        ],
      ],
    ],
  ];
}