function MenuLinkContentTest::getPostDocument

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

Overrides ResourceTestBase::getPostDocument

1 call to MenuLinkContentTest::getPostDocument()
MenuLinkContentTest::testLinkOptionsSerialization in core/modules/jsonapi/tests/src/Functional/MenuLinkContentTest.php
Tests requests using a serialized field item property.

File

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

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' => 'Drama llama',
                'link' => [
                    'uri' => 'http://www.urbandictionary.com/define.php?term=drama%20llama',
                ],
            ],
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.