()
| 17 | |
| 18 | |
| 19 | def test_tuple_input() -> None: |
| 20 | result = to_httpx_files([("file", readme_path)]) |
| 21 | print(result) |
| 22 | assert result == IsList(IsTuple("file", IsTuple("README.md", IsBytes()))) |
| 23 | |
| 24 | |
| 25 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected