()
| 10 | |
| 11 | #[tokio::test] |
| 12 | async fn test_async_to_keypair() { |
| 13 | let client = DstackClient::new(None); |
| 14 | let result = client |
| 15 | .get_key(Some("test".to_string()), None) |
| 16 | .await |
| 17 | .expect("get_key failed"); |
| 18 | |
| 19 | let _: &GetKeyResponse = &result; |
| 20 | let _wallet = to_account(&result).expect("to_account failed"); |
| 21 | } |
nothing calls this directly
no test coverage detected