()
| 386 | |
| 387 | #[test] |
| 388 | fn test_remote_clone() { |
| 389 | let cmd = Remote::new().with_verbose(true); |
| 390 | let cloned = cmd.clone(); |
| 391 | assert_eq!(cmd.verbose, cloned.verbose); |
| 392 | } |
| 393 | |
| 394 | #[test] |
| 395 | fn test_remote_debug() { |
nothing calls this directly
no test coverage detected