protected function NodeTest::getPostDocument in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/tests/src/Functional/NodeTest.php \Drupal\Tests\jsonapi\Functional\NodeTest::getPostDocument()
- 10 core/modules/jsonapi/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 core/
modules/ jsonapi/ tests/ src/ Functional/ NodeTest.php - Creating relationships to missing resources should be 404 per JSON:API 1.1.
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ NodeTest.php, line 237
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',
],
],
];
}