protected function NodeTest::getPostDocument in JSON:API 8.2
Same name and namespace in other branches
- 8 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()
1 call to NodeTest::getPostDocument()
- NodeTest::testPostNonExistingAuthor in tests/
src/ Functional/ NodeTest.php - Creating relationships to missing resources should be 404 per JSON:API 1.1.
File
- tests/
src/ Functional/ NodeTest.php, line 231
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',
],
],
];
}