()
| 16 | |
| 17 | @pytest.mark.asyncio |
| 18 | async def test_async_to_keypair(): |
| 19 | client = AsyncDstackClient() |
| 20 | result = await client.get_key("test") |
| 21 | assert isinstance(result, GetKeyResponse) |
| 22 | keypair = to_keypair(result) |
| 23 | assert isinstance(keypair, Keypair) |
| 24 | |
| 25 | |
| 26 | def test_sync_to_keypair(): |
nothing calls this directly
no test coverage detected