()
| 38 | |
| 39 | @pytest.mark.asyncio |
| 40 | async def test_async_tuple_input() -> None: |
| 41 | result = await async_to_httpx_files([("file", readme_path)]) |
| 42 | print(result) |
| 43 | assert result == IsList(IsTuple("file", IsTuple("README.md", IsBytes()))) |
| 44 | |
| 45 | |
| 46 | def test_string_not_allowed() -> None: |
nothing calls this directly
no test coverage detected