function MenuLinkContentTest::getPostDocument
Returns the JSON:API POST document.
Return value
array A JSON:API request document.
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\FunctionalCode
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.