()
| 104 | |
| 105 | @pytest.mark.asyncio |
| 106 | async def test_async_client_get_quote(): |
| 107 | client = AsyncDstackClient() |
| 108 | result = await client.get_quote("test") |
| 109 | assert isinstance(result, GetQuoteResponse) |
| 110 | |
| 111 | |
| 112 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected