()
| 43 | |
| 44 | |
| 45 | def test_string_not_allowed() -> None: |
| 46 | with pytest.raises(TypeError, match="Expected file types input to be a FileContent type or to be a tuple"): |
| 47 | to_httpx_files( |
| 48 | { |
| 49 | "file": "foo", # type: ignore |
| 50 | } |
| 51 | ) |
nothing calls this directly
no test coverage detected