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