summaryrefslogtreecommitdiff
path: root/tests/unit/_backends/test_requests_backend.py
Commit message (Collapse)AuthorAgeFilesLines
* fix: support int for `parent_id` in `import_group`John L. Villalovos2023-03-121-4/+17
| | | | | | | | | This will also fix other use cases where an integer is passed in to MultipartEncoder. Added unit tests to show it works. Closes: #2506
* chore: use a dataclass to return values from `prepare_send_data`John L. Villalovos2023-03-121-0/+38
I found the tuple of three values confusing. So instead use a dataclass to return the three values. It is still confusing but a little bit less so. Also add some unit tests