()
| 25 | |
| 26 | |
| 27 | def test_sync_to_account(): |
| 28 | # Use mock GetKeyResponse instead of actual server call |
| 29 | mock_result = GetKeyResponse( |
| 30 | key="1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef", |
| 31 | signature_chain=["sig1", "sig2"], |
| 32 | ) |
| 33 | assert isinstance(mock_result, GetKeyResponse) |
| 34 | account = to_account(mock_result) |
| 35 | assert isinstance(account, LocalAccount) |
| 36 | |
| 37 | |
| 38 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected