Test that async client can check if service is reachable.
()
| 189 | |
| 190 | @pytest.mark.asyncio |
| 191 | async def test_async_client_is_reachable(): |
| 192 | """Test that async client can check if service is reachable.""" |
| 193 | client = AsyncDstackClient() |
| 194 | is_reachable = await client.is_reachable() |
| 195 | assert isinstance(is_reachable, bool) |
| 196 | assert is_reachable |
| 197 | |
| 198 | |
| 199 | def test_tls_key_as_uint8array(): |
nothing calls this directly
no test coverage detected