()
| 48 | |
| 49 | |
| 50 | def test_sync_to_account_secure(): |
| 51 | # Use mock GetKeyResponse instead of actual server call |
| 52 | mock_result = GetKeyResponse( |
| 53 | key="1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef", |
| 54 | signature_chain=["sig1", "sig2"], |
| 55 | ) |
| 56 | assert isinstance(mock_result, GetKeyResponse) |
| 57 | account = to_account_secure(mock_result) |
| 58 | assert isinstance(account, LocalAccount) |
| 59 | |
| 60 | |
| 61 | def test_to_account_with_tls_key(): |
nothing calls this directly
no test coverage detected