protected function NodeTest::getPostDocument in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/NodeTest.php \Drupal\Tests\jsonapi\Functional\NodeTest::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/ NodeTest.php, line 212
Class
- NodeTest
- JSON API integration test for the "Node" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getPostDocument() {
return [
'data' => [
'type' => 'node--camelids',
'attributes' => [
'title' => 'Dramallama',
],
],
];
}