()
| 31 | |
| 32 | @pytest.mark.asyncio |
| 33 | async def test_async_supports_anyio_path() -> None: |
| 34 | result = await async_to_httpx_files({"file": anyio.Path(readme_path)}) |
| 35 | print(result) |
| 36 | assert result == IsDict({"file": IsTuple("README.md", IsBytes())}) |
| 37 | |
| 38 | |
| 39 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected