()
| 33 | |
| 34 | @pytest.mark.asyncio |
| 35 | async def test_async_to_keypair_secure(): |
| 36 | client = AsyncDstackClient() |
| 37 | result = await client.get_key("test") |
| 38 | assert isinstance(result, GetKeyResponse) |
| 39 | keypair = to_keypair_secure(result) |
| 40 | assert isinstance(keypair, Keypair) |
| 41 | |
| 42 | |
| 43 | def test_sync_to_keypair_secure(): |
nothing calls this directly
no test coverage detected