()
| 37 | |
| 38 | @pytest.mark.asyncio |
| 39 | async def test_async_to_account_secure(): |
| 40 | # Use mock GetKeyResponse instead of actual server call |
| 41 | mock_result = GetKeyResponse( |
| 42 | key="1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef", |
| 43 | signature_chain=["sig1", "sig2"], |
| 44 | ) |
| 45 | assert isinstance(mock_result, GetKeyResponse) |
| 46 | account = to_account_secure(mock_result) |
| 47 | assert isinstance(account, LocalAccount) |
| 48 | |
| 49 | |
| 50 | def test_sync_to_account_secure(): |
nothing calls this directly
no test coverage detected