You are here

protected function MenuLinkContentTest::getPostDocument in JSON:API 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/MenuLinkContentTest.php \Drupal\Tests\jsonapi\Functional\MenuLinkContentTest::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/MenuLinkContentTest.php, line 143

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