()
| 14 | |
| 15 | @pytest.mark.asyncio |
| 16 | async def test_async_to_account(): |
| 17 | # Use mock GetKeyResponse instead of actual server call |
| 18 | mock_result = GetKeyResponse( |
| 19 | key="1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef", |
| 20 | signature_chain=["sig1", "sig2"], |
| 21 | ) |
| 22 | assert isinstance(mock_result, GetKeyResponse) |
| 23 | account = to_account(mock_result) |
| 24 | assert isinstance(account, LocalAccount) |
| 25 | |
| 26 | |
| 27 | def test_sync_to_account(): |
nothing calls this directly
no test coverage detected