()
| 364 | |
| 365 | |
| 366 | def file_metadata_body() -> dict[str, Any]: |
| 367 | return { |
| 368 | "id": "file_123", |
| 369 | "created_at": "2024-01-01T00:00:00Z", |
| 370 | "filename": "upload.txt", |
| 371 | "mime_type": "text/plain", |
| 372 | "size_bytes": 13, |
| 373 | "type": "file", |
| 374 | } |
| 375 | |
| 376 | |
| 377 | class TestAPIRequest: |
no outgoing calls
no test coverage detected