(content_type: str)
| 6 | |
| 7 | |
| 8 | def meta(content_type: str) -> Metadata: |
| 9 | return Metadata( |
| 10 | content_type=content_type.split(";")[0], |
| 11 | http_message=http.Request.make( |
| 12 | "POST", "https://example.com/", headers={"content-type": content_type} |
| 13 | ), |
| 14 | ) |
| 15 | |
| 16 | |
| 17 | def test_view_multipart(): |
no test coverage detected
searching dependent graphs…