()
| 41 | |
| 42 | |
| 43 | def test_sync_to_keypair_secure(): |
| 44 | client = DstackClient() |
| 45 | result = client.get_key("test") |
| 46 | assert isinstance(result, GetKeyResponse) |
| 47 | keypair = to_keypair_secure(result) |
| 48 | assert isinstance(keypair, Keypair) |
| 49 | |
| 50 | |
| 51 | def test_to_keypair_with_tls_key(): |
nothing calls this directly
no test coverage detected