()
| 111 | |
| 112 | @pytest.mark.asyncio |
| 113 | async def test_async_client_attest(): |
| 114 | client = AsyncDstackClient() |
| 115 | result = await client.attest("test") |
| 116 | assert isinstance(result, AttestResponse) |
| 117 | assert len(result.attestation) > 0 |
| 118 | |
| 119 | |
| 120 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected