Hello,
our api requires to upload multiple files on the same fieldname:
Content-Type: multipart/form-data;boundary=------FormBoundaryShouldDifferAtRuntime
------FormBoundaryShouldDifferAtRuntime
Content-Disposition: form-data; name="files"; filename="filenameA.pdf"
Content-Type: application/pdf
[content]
------FormBoundaryShouldDifferAtRuntime
Content-Disposition: form-data; name="files"; filename="filenameB.pdf"
Content-Type: application/pdf
[content]
------FormBoundaryShouldDifferAtRuntime--
At the moment i am not able to write a test with two files on the same files key. MultiValueDict does not work with APIClient.post(). Any recommendations?