()
| 25 | } |
| 26 | |
| 27 | fn test_handshake_defaults() -> DaemonHandshake { |
| 28 | DaemonHandshake { |
| 29 | project_path: None, |
| 30 | scope_prefix: None, |
| 31 | timings: false, |
| 32 | allow_init: false, |
| 33 | allow_initialize_root_routing: false, |
| 34 | client_identity: test_client_identity(), |
| 35 | client_version: super::binary_version().to_string(), |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | #[cfg(unix)] |
| 40 | async fn await_test_task<T>(task: JoinHandle<T>, label: &str) -> T { |
no test coverage detected